Project: Wrangling and Analyze Data¶

Importing libraries¶

In [1]:
import pandas as pd
import numpy as np
import requests as rq
import tweepy as tp
from tweepy import OAuthHandler
import json
import os
from timeit import default_timer as timer
import black
from bs4 import BeautifulSoup
import re
from IPython.display import Image
from matplotlib import pyplot as plt
import seaborn as sns

Creating Used Functions¶

In [2]:
def get_url_elements(row):
    soup = BeautifulSoup(row["source"], "html")
    row["tweet_source"] = soup.find("a").contents[0]
    row["url_ref"] = soup.find("a").get("href")
    row["rel"] = soup.find("a").get("rel")[0]
    return row

Data Gathering¶

In the cell below, gather all three pieces of data for this project and load them in the notebook. Note: the methods required to gather each data are different.

  1. Directly download the WeRateDogs Twitter archive data (twitter_archive_enhanced.csv)
In [3]:
df_werated = pd.read_csv(os.path.join(os.getcwd(), "twitter-archive-enhanced.csv"))
df_werated.shape
Out[3]:
(2356, 17)
  1. Use the Requests library to download the tweet image prediction (image_predictions.tsv)
In [4]:
file_url = "https://d17h27t6h515a5.cloudfront.net/topher/2017/August/599fd2ad_image-predictions/image-predictions.tsv"
r = rq.get(file_url)
In [5]:
with open(os.path.join(os.getcwd(), file_url.split("/")[-1]), "wb") as file:
    file.write(r.content)
In [6]:
df_img_pred = pd.read_csv("image-predictions.tsv", sep="\t")
  1. Use the Tweepy library to query additional data via the Twitter API (tweet_json.txt)

Even though my request for the student access to Tweepy was refused, I will describe how I would suppose to fetch the required data in the following cells. Then the actual extraction will happen with the file tweet-json.txt

In [7]:
consumer_key = "HIDDEN"
consumer_secret = "HIDDEN"
access_token = "HIDDEN"
access_secret = "HIDDEN"
auth = OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_secret)
api = tp.API(auth, wait_on_rate_limit=True)
In [8]:
tweet_ids = df_werated.tweet_id.values
len(tweet_ids)
Out[8]:
2356
In [9]:
count = 0
fails_dict = {}
start = timer()
with open("tweet_json.txt", "w") as outfile:
    for tweet_id in tweet_ids:
        count += 1

        try:
            tweet = api.get_status(tweet_id, tweet_mode="extended")
            json.dump(tweet._json, outfile)
            outfile.write("\n")
        except tp.TweepyException as e:
            fails_dict[tweet_id] = e
            pass
end = timer()
print(f"Total elapsed time: {end - start} seconds")
Total elapsed time: 710.6608249999999 seconds

len(fails_dict.keys())

Notice that all the tweets failed, because of user permissions. Therefore, I will use the tweet-json.txt file content

In [10]:
file_url = "https://video.udacity-data.com/topher/2018/November/5be5fb7d_tweet-json/tweet-json.txt"
r = rq.get(file_url)
with open(os.path.join(os.getcwd(), file_url.split("/")[-1]), "wb") as file:
    file.write(r.content)

Let's open the first line of the json file just to see the structure of the json file and if it has all the necessary fields

In [11]:
with open("tweet-json.txt", "r") as j:
    json_1st_line = json.loads(j.readlines(1)[0])
In [12]:
json_1st_line
Out[12]:
{'created_at': 'Tue Aug 01 16:23:56 +0000 2017',
 'id': 892420643555336193,
 'id_str': '892420643555336193',
 'full_text': "This is Phineas. He's a mystical boy. Only ever appears in the hole of a donut. 13/10 https://t.co/MgUWQ76dJU",
 'truncated': False,
 'display_text_range': [0, 85],
 'entities': {'hashtags': [],
  'symbols': [],
  'user_mentions': [],
  'urls': [],
  'media': [{'id': 892420639486877696,
    'id_str': '892420639486877696',
    'indices': [86, 109],
    'media_url': 'http://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg',
    'media_url_https': 'https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg',
    'url': 'https://t.co/MgUWQ76dJU',
    'display_url': 'pic.twitter.com/MgUWQ76dJU',
    'expanded_url': 'https://twitter.com/dog_rates/status/892420643555336193/photo/1',
    'type': 'photo',
    'sizes': {'large': {'w': 540, 'h': 528, 'resize': 'fit'},
     'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
     'small': {'w': 540, 'h': 528, 'resize': 'fit'},
     'medium': {'w': 540, 'h': 528, 'resize': 'fit'}}}]},
 'extended_entities': {'media': [{'id': 892420639486877696,
    'id_str': '892420639486877696',
    'indices': [86, 109],
    'media_url': 'http://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg',
    'media_url_https': 'https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg',
    'url': 'https://t.co/MgUWQ76dJU',
    'display_url': 'pic.twitter.com/MgUWQ76dJU',
    'expanded_url': 'https://twitter.com/dog_rates/status/892420643555336193/photo/1',
    'type': 'photo',
    'sizes': {'large': {'w': 540, 'h': 528, 'resize': 'fit'},
     'thumb': {'w': 150, 'h': 150, 'resize': 'crop'},
     'small': {'w': 540, 'h': 528, 'resize': 'fit'},
     'medium': {'w': 540, 'h': 528, 'resize': 'fit'}}}]},
 'source': '<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>',
 'in_reply_to_status_id': None,
 'in_reply_to_status_id_str': None,
 'in_reply_to_user_id': None,
 'in_reply_to_user_id_str': None,
 'in_reply_to_screen_name': None,
 'user': {'id': 4196983835,
  'id_str': '4196983835',
  'name': 'WeRateDogs™ (author)',
  'screen_name': 'dog_rates',
  'location': 'DM YOUR DOGS, WE WILL RATE',
  'description': '#1 Source for Professional Dog Ratings | STORE: @ShopWeRateDogs | IG, FB & SC: WeRateDogs MOBILE APP: @GoodDogsGame | Business: dogratingtwitter@gmail.com',
  'url': 'https://t.co/N7sNNHAEXS',
  'entities': {'url': {'urls': [{'url': 'https://t.co/N7sNNHAEXS',
      'expanded_url': 'http://weratedogs.com',
      'display_url': 'weratedogs.com',
      'indices': [0, 23]}]},
   'description': {'urls': []}},
  'protected': False,
  'followers_count': 3200889,
  'friends_count': 104,
  'listed_count': 2784,
  'created_at': 'Sun Nov 15 21:41:29 +0000 2015',
  'favourites_count': 114031,
  'utc_offset': None,
  'time_zone': None,
  'geo_enabled': True,
  'verified': True,
  'statuses_count': 5288,
  'lang': 'en',
  'contributors_enabled': False,
  'is_translator': False,
  'is_translation_enabled': False,
  'profile_background_color': '000000',
  'profile_background_image_url': 'http://abs.twimg.com/images/themes/theme1/bg.png',
  'profile_background_image_url_https': 'https://abs.twimg.com/images/themes/theme1/bg.png',
  'profile_background_tile': False,
  'profile_image_url': 'http://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg',
  'profile_image_url_https': 'https://pbs.twimg.com/profile_images/861415328504569856/R2xOOfwe_normal.jpg',
  'profile_banner_url': 'https://pbs.twimg.com/profile_banners/4196983835/1501129017',
  'profile_link_color': 'F5ABB5',
  'profile_sidebar_border_color': '000000',
  'profile_sidebar_fill_color': '000000',
  'profile_text_color': '000000',
  'profile_use_background_image': False,
  'has_extended_profile': True,
  'default_profile': False,
  'default_profile_image': False,
  'following': True,
  'follow_request_sent': False,
  'notifications': False,
  'translator_type': 'none'},
 'geo': None,
 'coordinates': None,
 'place': None,
 'contributors': None,
 'is_quote_status': False,
 'retweet_count': 8853,
 'favorite_count': 39467,
 'favorited': False,
 'retweeted': False,
 'possibly_sensitive': False,
 'possibly_sensitive_appealable': False,
 'lang': 'en'}
In [13]:
json_1st_line["entities"]["media"][0]["expanded_url"]
Out[13]:
'https://twitter.com/dog_rates/status/892420643555336193/photo/1'
In [14]:
# Checking if all the columns can be found.
all(elem in json_1st_line.keys() for elem in ["id", "retweet_count", "favorite_count"])
Out[14]:
True

All columns found. Except the tweet_id, which is equivalent to id

In [15]:
tweets_dict = {
    "tweet_id": [],
    "retweet_count": [],
    "favorite_count": [],
    "followers_count": [],
    "friends_count": [],
    "source": [],
    "retweeted_status": [],
}
with open("tweet-json.txt", "r") as j:
    for l in j.readlines():
        r = json.loads(l)
        tweets_dict["tweet_id"].append(r["id"])
        tweets_dict["retweet_count"].append(r["retweet_count"])
        tweets_dict["favorite_count"].append(r["favorite_count"])
        tweets_dict["followers_count"].append(r["user"]["followers_count"])
        tweets_dict["friends_count"].append(r["user"]["friends_count"])
        tweets_dict["source"].append(r["source"])
        rt_status = r.get("retweeted_status")
        if not rt_status:
            rt_status = "Original Tweet"
        else:
            rt_status = "Retweet"
        tweets_dict["retweeted_status"].append(rt_status)
In [16]:
df_tweet_details = pd.DataFrame(tweets_dict)

Assessing Data¶

In this section, detect and document at least eight (8) quality issues and two (2) tidiness issue. You must use both visual assessment programmatic assessement to assess the data.

Note: pay attention to the following key points when you access the data.

  • You only want original ratings (no retweets) that have images. Though there are 5000+ tweets in the dataset, not all are dog ratings and some are retweets.
  • Assessing and cleaning the entire dataset completely would require a lot of time, and is not necessary to practice and demonstrate your skills in data wrangling. Therefore, the requirements of this project are only to assess and clean at least 8 quality issues and at least 2 tidiness issues in this dataset.
  • The fact that the rating numerators are greater than the denominators does not need to be cleaned. This unique rating system is a big part of the popularity of WeRateDogs.
  • You do not need to gather the tweets beyond August 1st, 2017. You can, but note that you won't be able to gather the image predictions for these tweets since you don't have access to the algorithm used.

Visual Assessment¶

In [17]:
pd.set_option("display.max_rows", None)
pd.set_option("display.max_columns", None)
In [18]:
df_werated
Out[18]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
0 892420643555336193 NaN NaN 2017-08-01 16:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... 13 10 Phineas None None None None
1 892177421306343426 NaN NaN 2017-08-01 00:17:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... NaN NaN NaN https://twitter.com/dog_rates/status/892177421... 13 10 Tilly None None None None
2 891815181378084864 NaN NaN 2017-07-31 00:18:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... NaN NaN NaN https://twitter.com/dog_rates/status/891815181... 12 10 Archie None None None None
3 891689557279858688 NaN NaN 2017-07-30 15:58:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... NaN NaN NaN https://twitter.com/dog_rates/status/891689557... 13 10 Darla None None None None
4 891327558926688256 NaN NaN 2017-07-29 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... NaN NaN NaN https://twitter.com/dog_rates/status/891327558... 12 10 Franklin None None None None
5 891087950875897856 NaN NaN 2017-07-29 00:08:17 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a majestic great white breaching ... NaN NaN NaN https://twitter.com/dog_rates/status/891087950... 13 10 None None None None None
6 890971913173991426 NaN NaN 2017-07-28 16:27:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He enjoys ice cream so much he gets ... NaN NaN NaN https://gofundme.com/ydvmve-surgery-for-jax,ht... 13 10 Jax None None None None
7 890729181411237888 NaN NaN 2017-07-28 00:22:40 +0000 <a href="http://twitter.com/download/iphone" r... When you watch your owner call another dog a g... NaN NaN NaN https://twitter.com/dog_rates/status/890729181... 13 10 None None None None None
8 890609185150312448 NaN NaN 2017-07-27 16:25:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She doesn't want to be one of th... NaN NaN NaN https://twitter.com/dog_rates/status/890609185... 13 10 Zoey None None None None
9 890240255349198849 NaN NaN 2017-07-26 15:59:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She is a college pup. Studying... NaN NaN NaN https://twitter.com/dog_rates/status/890240255... 14 10 Cassie doggo None None None
10 890006608113172480 NaN NaN 2017-07-26 00:31:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. He is a South Australian decksha... NaN NaN NaN https://twitter.com/dog_rates/status/890006608... 13 10 Koda None None None None
11 889880896479866881 NaN NaN 2017-07-25 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruno. He is a service shark. Only get... NaN NaN NaN https://twitter.com/dog_rates/status/889880896... 13 10 Bruno None None None None
12 889665388333682689 NaN NaN 2017-07-25 01:55:32 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo that seems to be on the fence a... NaN NaN NaN https://twitter.com/dog_rates/status/889665388... 13 10 None None None None puppo
13 889638837579907072 NaN NaN 2017-07-25 00:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ted. He does his best. Sometimes that'... NaN NaN NaN https://twitter.com/dog_rates/status/889638837... 12 10 Ted None None None None
14 889531135344209921 NaN NaN 2017-07-24 17:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Stuart. He's sporting his favorite fan... NaN NaN NaN https://twitter.com/dog_rates/status/889531135... 13 10 Stuart None None None puppo
15 889278841981685760 NaN NaN 2017-07-24 00:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. You're witnessing one of his m... NaN NaN NaN https://twitter.com/dog_rates/status/889278841... 13 10 Oliver None None None None
16 888917238123831296 NaN NaN 2017-07-23 00:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Jim. He found a fren. Taught him how t... NaN NaN NaN https://twitter.com/dog_rates/status/888917238... 12 10 Jim None None None None
17 888804989199671297 NaN NaN 2017-07-22 16:56:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He has a new stick. Very proud o... NaN NaN NaN https://twitter.com/dog_rates/status/888804989... 13 10 Zeke None None None None
18 888554962724278272 NaN NaN 2017-07-22 00:23:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphus. He's powering up. Attempting ... NaN NaN NaN https://twitter.com/dog_rates/status/888554962... 13 10 Ralphus None None None None
19 888202515573088257 NaN NaN 2017-07-21 01:02:36 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Canela. She attempted s... 8.874740e+17 4.196984e+09 2017-07-19 00:47:34 +0000 https://twitter.com/dog_rates/status/887473957... 13 10 Canela None None None None
20 888078434458587136 NaN NaN 2017-07-20 16:49:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Gerald. He was just told he didn't get... NaN NaN NaN https://twitter.com/dog_rates/status/888078434... 12 10 Gerald None None None None
21 887705289381826560 NaN NaN 2017-07-19 16:06:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrey. He has a monopoly on the pool... NaN NaN NaN https://twitter.com/dog_rates/status/887705289... 13 10 Jeffrey None None None None
22 887517139158093824 NaN NaN 2017-07-19 03:39:09 +0000 <a href="http://twitter.com/download/iphone" r... I've yet to rate a Venezuelan Hover Wiener. Th... NaN NaN NaN https://twitter.com/dog_rates/status/887517139... 14 10 such None None None None
23 887473957103951883 NaN NaN 2017-07-19 00:47:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Canela. She attempted some fancy porch... NaN NaN NaN https://twitter.com/dog_rates/status/887473957... 13 10 Canela None None None None
24 887343217045368832 NaN NaN 2017-07-18 16:08:03 +0000 <a href="http://twitter.com/download/iphone" r... You may not have known you needed to see this ... NaN NaN NaN https://twitter.com/dog_rates/status/887343217... 13 10 None None None None None
25 887101392804085760 NaN NaN 2017-07-18 00:07:08 +0000 <a href="http://twitter.com/download/iphone" r... This... is a Jubilant Antarctic House Bear. We... NaN NaN NaN https://twitter.com/dog_rates/status/887101392... 12 10 None None None None None
26 886983233522544640 NaN NaN 2017-07-17 16:17:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Maya. She's very shy. Rarely leaves he... NaN NaN NaN https://twitter.com/dog_rates/status/886983233... 13 10 Maya None None None None
27 886736880519319552 NaN NaN 2017-07-16 23:58:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Mingus. He's a wonderful father to his... NaN NaN NaN https://www.gofundme.com/mingusneedsus,https:/... 13 10 Mingus None None None None
28 886680336477933568 NaN NaN 2017-07-16 20:14:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Derek. He's late for a dog meeting. 13... NaN NaN NaN https://twitter.com/dog_rates/status/886680336... 13 10 Derek None None None None
29 886366144734445568 NaN NaN 2017-07-15 23:25:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Roscoe. Another pupper fallen victim t... NaN NaN NaN https://twitter.com/dog_rates/status/886366144... 12 10 Roscoe None None pupper None
30 886267009285017600 8.862664e+17 2.281182e+09 2017-07-15 16:51:35 +0000 <a href="http://twitter.com/download/iphone" r... @NonWhiteHat @MayhewMayhem omg hello tanner yo... NaN NaN NaN NaN 12 10 None None None None None
31 886258384151887873 NaN NaN 2017-07-15 16:17:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. His doggles are pupside down.... NaN NaN NaN https://twitter.com/dog_rates/status/886258384... 13 10 Waffles None None None None
32 886054160059072513 NaN NaN 2017-07-15 02:45:48 +0000 <a href="http://twitter.com/download/iphone" r... RT @Athletics: 12/10 #BATP https://t.co/WxwJmv... 8.860537e+17 1.960740e+07 2017-07-15 02:44:07 +0000 https://twitter.com/dog_rates/status/886053434... 12 10 None None None None None
33 885984800019947520 NaN NaN 2017-07-14 22:10:11 +0000 <a href="http://twitter.com/download/iphone" r... Viewer discretion advised. This is Jimbo. He w... NaN NaN NaN https://twitter.com/dog_rates/status/885984800... 12 10 Jimbo None None None None
34 885528943205470208 NaN NaN 2017-07-13 15:58:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Maisey. She fell asleep mid-excavation... NaN NaN NaN https://twitter.com/dog_rates/status/885528943... 13 10 Maisey None None None None
35 885518971528720385 NaN NaN 2017-07-13 15:19:09 +0000 <a href="http://twitter.com/download/iphone" r... I have a new hero and his name is Howard. 14/1... NaN NaN NaN https://twitter.com/4bonds2carbon/status/88551... 14 10 None None None None None
36 885311592912609280 NaN NaN 2017-07-13 01:35:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Lilly. She just paralle... 8.305833e+17 4.196984e+09 2017-02-12 01:04:29 +0000 https://twitter.com/dog_rates/status/830583320... 13 10 Lilly None None None None
37 885167619883638784 NaN NaN 2017-07-12 16:03:00 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a corgi undercover as a malamute.... NaN NaN NaN https://twitter.com/dog_rates/status/885167619... 13 10 None None None None None
38 884925521741709313 NaN NaN 2017-07-12 00:01:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Earl. He found a hat. Nervous about wh... NaN NaN NaN https://twitter.com/dog_rates/status/884925521... 12 10 Earl None None None None
39 884876753390489601 NaN NaN 2017-07-11 20:47:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. It's her first time outside. Mus... NaN NaN NaN https://twitter.com/dog_rates/status/884876753... 13 10 Lola None None None None
40 884562892145688576 NaN NaN 2017-07-11 00:00:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. He's just so happy. 13/10 what ... NaN NaN NaN https://twitter.com/dog_rates/status/884562892... 13 10 Kevin None None None None
41 884441805382717440 NaN NaN 2017-07-10 15:58:53 +0000 <a href="http://twitter.com/download/iphone" r... I present to you, Pup in Hat. Pup in Hat is gr... NaN NaN NaN https://twitter.com/dog_rates/status/884441805... 14 10 None None None None None
42 884247878851493888 NaN NaN 2017-07-10 03:08:17 +0000 <a href="http://twitter.com/download/iphone" r... OMG HE DIDN'T MEAN TO HE WAS JUST TRYING A LIT... NaN NaN NaN https://twitter.com/kaijohnson_19/status/88396... 13 10 None None None None None
43 884162670584377345 NaN NaN 2017-07-09 21:29:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Yogi. He doesn't have any important dog m... NaN NaN NaN https://twitter.com/dog_rates/status/884162670... 12 10 Yogi doggo None None None
44 883838122936631299 NaN NaN 2017-07-09 00:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Noah. He can't believe someone made th... NaN NaN NaN https://twitter.com/dog_rates/status/883838122... 12 10 Noah None None None None
45 883482846933004288 NaN NaN 2017-07-08 00:28:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She hopes her smile made you sm... NaN NaN NaN https://twitter.com/dog_rates/status/883482846... 5 10 Bella None None None None
46 883360690899218434 NaN NaN 2017-07-07 16:22:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Grizzwald. He may be the floofiest floofe... NaN NaN NaN https://twitter.com/dog_rates/status/883360690... 13 10 Grizzwald None floofer None None
47 883117836046086144 NaN NaN 2017-07-07 00:17:54 +0000 <a href="http://twitter.com/download/iphone" r... Please only send dogs. We don't rate mechanics... NaN NaN NaN https://twitter.com/dog_rates/status/883117836... 13 10 None None None None None
48 882992080364220416 NaN NaN 2017-07-06 15:58:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Rusty. He wasn't ready for the first p... NaN NaN NaN https://twitter.com/dog_rates/status/882992080... 13 10 Rusty None None None None
49 882762694511734784 NaN NaN 2017-07-06 00:46:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Gus. He's quite the cheeky pupper. Alr... NaN NaN NaN https://twitter.com/dog_rates/status/882762694... 12 10 Gus None None pupper None
50 882627270321602560 NaN NaN 2017-07-05 15:48:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. He has his first swim lesson ... NaN NaN NaN https://twitter.com/dog_rates/status/882627270... 13 10 Stanley None None None None
51 882268110199369728 NaN NaN 2017-07-04 16:01:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfy. You're witnessing his first wate... NaN NaN NaN https://twitter.com/dog_rates/status/882268110... 13 10 Alfy None None None None
52 882045870035918850 NaN NaN 2017-07-04 01:18:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Koko. Her owner, inspired by Barney, r... NaN NaN NaN https://twitter.com/dog_rates/status/882045870... 13 10 Koko None None None None
53 881906580714921986 NaN NaN 2017-07-03 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Rey. He's a Benebop Cumberfloof. 12/10... NaN NaN NaN https://twitter.com/dog_rates/status/881906580... 12 10 Rey None None None None
54 881666595344535552 NaN NaN 2017-07-03 00:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Gary. He couldn't miss this puppertuni... NaN NaN NaN https://twitter.com/dog_rates/status/881666595... 13 10 Gary None None None None
55 881633300179243008 8.816070e+17 4.738443e+07 2017-07-02 21:58:53 +0000 <a href="http://twitter.com/download/iphone" r... @roushfenway These are good dogs but 17/10 is ... NaN NaN NaN NaN 17 10 None None None None None
56 881536004380872706 NaN NaN 2017-07-02 15:32:16 +0000 <a href="http://twitter.com/download/iphone" r... Here is a pupper approaching maximum borkdrive... NaN NaN NaN https://twitter.com/dog_rates/status/881536004... 14 10 a None None pupper None
57 881268444196462592 NaN NaN 2017-07-01 21:49:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Elliot. He's a Canadian Forrest Pup. Unus... NaN NaN NaN https://twitter.com/dog_rates/status/881268444... 12 10 Elliot None None None None
58 880935762899988482 NaN NaN 2017-06-30 23:47:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's crossing. It's a big deal.... NaN NaN NaN https://twitter.com/dog_rates/status/880935762... 13 10 Louis None None None None
59 880872448815771648 NaN NaN 2017-06-30 19:35:32 +0000 <a href="http://twitter.com/download/iphone" r... Ugh not again. We only rate dogs. Please don't... NaN NaN NaN https://twitter.com/dog_rates/status/880872448... 12 10 None None None None None
60 880465832366813184 NaN NaN 2017-06-29 16:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She had her first beach experie... NaN NaN NaN https://twitter.com/dog_rates/status/880465832... 12 10 Bella None None None None
61 880221127280381952 NaN NaN 2017-06-29 00:27:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jesse. He's a Fetty Woof. His tongue ejec... NaN NaN NaN https://twitter.com/dog_rates/status/880221127... 12 10 Jesse None None None None
62 880095782870896641 NaN NaN 2017-06-28 16:09:20 +0000 <a href="http://twitter.com/download/iphone" r... Please don't send in photos without dogs in th... NaN NaN NaN https://twitter.com/dog_rates/status/880095782... 11 10 None None None None None
63 879862464715927552 NaN NaN 2017-06-28 00:42:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Romeo. He would like to do an entrance... NaN NaN NaN https://twitter.com/dog_rates/status/879862464... 13 10 Romeo None None None None
64 879674319642796034 8.795538e+17 3.105441e+09 2017-06-27 12:14:36 +0000 <a href="http://twitter.com/download/iphone" r... @RealKentMurphy 14/10 confirmed NaN NaN NaN NaN 14 10 None None None None None
65 879492040517615616 NaN NaN 2017-06-27 00:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. He thinks you should measure e... NaN NaN NaN https://twitter.com/dog_rates/status/879492040... 12 10 Bailey None None None None
66 879415818425184262 NaN NaN 2017-06-26 19:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Duddles. He did an attempt. 13/10 some... NaN NaN NaN https://twitter.com/dog_rates/status/879415818... 13 10 Duddles None None None None
67 879376492567855104 NaN NaN 2017-06-26 16:31:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Jack AKA Stephen Furry. You're not sco... NaN NaN NaN https://twitter.com/dog_rates/status/879376492... 12 10 Jack None None None None
68 879130579576475649 NaN NaN 2017-06-26 00:13:58 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Emmy. She was adopted t... 8.780576e+17 4.196984e+09 2017-06-23 01:10:23 +0000 https://twitter.com/dog_rates/status/878057613... 14 10 Emmy None None None None
69 879050749262655488 NaN NaN 2017-06-25 18:56:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Steven. He has trouble relating to oth... NaN NaN NaN https://twitter.com/dog_rates/status/879050749... 11 10 Steven None None None None
70 879008229531029506 NaN NaN 2017-06-25 16:07:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Beau. That is Beau's balloon. He takes... NaN NaN NaN https://twitter.com/dog_rates/status/879008229... 13 10 Beau None None None None
71 878776093423087618 NaN NaN 2017-06-25 00:45:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Snoopy. He's a proud #PrideMonthPuppo.... NaN NaN NaN https://twitter.com/dog_rates/status/878776093... 13 10 Snoopy None None None puppo
72 878604707211726852 NaN NaN 2017-06-24 13:24:20 +0000 <a href="http://twitter.com/download/iphone" r... Martha is stunning how h*ckin dare you. 13/10 ... NaN NaN NaN https://twitter.com/bbcworld/status/8785998685... 13 10 None None None None None
73 878404777348136964 NaN NaN 2017-06-24 00:09:53 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Shadow. In an attempt to r... 8.782815e+17 4.196984e+09 2017-06-23 16:00:04 +0000 https://www.gofundme.com/3yd6y1c,https://twitt... 13 10 Shadow None None None None
74 878316110768087041 NaN NaN 2017-06-23 18:17:33 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Terrance. He's being yelle... 6.690004e+17 4.196984e+09 2015-11-24 03:51:38 +0000 https://twitter.com/dog_rates/status/669000397... 11 10 Terrance None None None None
75 878281511006478336 NaN NaN 2017-06-23 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Shadow. In an attempt to reach maximum zo... NaN NaN NaN https://www.gofundme.com/3yd6y1c,https://twitt... 13 10 Shadow None None None None
76 878057613040115712 NaN NaN 2017-06-23 01:10:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Emmy. She was adopted today. Massive r... NaN NaN NaN https://twitter.com/dog_rates/status/878057613... 14 10 Emmy None None None None
77 877736472329191424 NaN NaN 2017-06-22 03:54:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Aja. She was just told she's a good do... NaN NaN NaN https://twitter.com/dog_rates/status/877736472... 13 10 Aja None None None None
78 877611172832227328 NaN NaN 2017-06-21 19:36:23 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachel2195: @dog_rates the boyfriend and h... 8.768508e+17 5.128045e+08 2017-06-19 17:14:49 +0000 https://twitter.com/rachel2195/status/87685077... 14 10 None None None pupper None
79 877556246731214848 NaN NaN 2017-06-21 15:58:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's both pupset and fired pup... NaN NaN NaN https://twitter.com/dog_rates/status/877556246... 12 10 Penny None None None None
80 877316821321428993 NaN NaN 2017-06-21 00:06:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dante. At first he wasn't a fan of his ne... NaN NaN NaN https://twitter.com/dog_rates/status/877316821... 13 10 Dante None None None None
81 877201837425926144 NaN NaN 2017-06-20 16:29:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He graduated with his dogtorate... NaN NaN NaN https://twitter.com/dog_rates/status/877201837... 12 10 Nelly None None None None
82 876838120628539392 NaN NaN 2017-06-19 16:24:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Ginger. She's having a ruff Monday. To... NaN NaN NaN https://twitter.com/dog_rates/status/876838120... 12 10 Ginger None None pupper None
83 876537666061221889 NaN NaN 2017-06-18 20:30:39 +0000 <a href="http://twitter.com/download/iphone" r... I can say with the pupmost confidence that the... NaN NaN NaN https://twitter.com/mpstowerham/status/8761629... 14 10 None None None None None
84 876484053909872640 NaN NaN 2017-06-18 16:57:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Benedict. He wants to thank you for th... NaN NaN NaN https://twitter.com/dog_rates/status/876484053... 13 10 Benedict None None None None
85 876120275196170240 NaN NaN 2017-06-17 16:52:05 +0000 <a href="http://twitter.com/download/iphone" r... Meet Venti, a seemingly caffeinated puppoccino... NaN NaN NaN https://twitter.com/dog_rates/status/876120275... 13 10 Venti None None None None
86 875747767867523072 NaN NaN 2017-06-16 16:11:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Goose. He's a womanizer. Cheeky as h*c... NaN NaN NaN https://twitter.com/dog_rates/status/875747767... 13 10 Goose None None None None
87 875144289856114688 NaN NaN 2017-06-15 00:13:52 +0000 <a href="http://twitter.com/download/iphone" r... Meet Nugget and Hank. Nugget took Hank's bone.... NaN NaN NaN https://twitter.com/dog_rates/status/875144289... 13 10 Nugget None None None None
88 875097192612077568 NaN NaN 2017-06-14 21:06:43 +0000 <a href="http://twitter.com/download/iphone" r... You'll get your package when that precious man... NaN NaN NaN https://twitter.com/drboondoc/status/874413398... 13 10 None None None None None
89 875021211251597312 NaN NaN 2017-06-14 16:04:48 +0000 <a href="http://twitter.com/download/iphone" r... Guys please stop sending pictures without any ... NaN NaN NaN https://twitter.com/dog_rates/status/875021211... 12 10 None None None None None
90 874680097055178752 NaN NaN 2017-06-13 17:29:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Cash. He hath acquired a stick. A very go... NaN NaN NaN https://twitter.com/dog_rates/status/874680097... 12 10 Cash None None None None
91 874434818259525634 NaN NaN 2017-06-13 01:14:41 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Coco. At first I though... 8.663350e+17 4.196984e+09 2017-05-21 16:48:45 +0000 https://twitter.com/dog_rates/status/866334964... 12 10 Coco None None None None
92 874296783580663808 NaN NaN 2017-06-12 16:06:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Jed. He may be the fanciest pupper in ... NaN NaN NaN https://twitter.com/dog_rates/status/874296783... 13 10 Jed None None pupper None
93 874057562936811520 NaN NaN 2017-06-12 00:15:36 +0000 <a href="http://twitter.com/download/iphone" r... I can't believe this keeps happening. This, is... NaN NaN NaN https://twitter.com/dog_rates/status/874057562... 12 10 None None None None None
94 874012996292530176 NaN NaN 2017-06-11 21:18:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Sebastian. He can't see all the colors... NaN NaN NaN https://twitter.com/dog_rates/status/874012996... 13 10 Sebastian None None None puppo
95 873697596434513921 NaN NaN 2017-06-11 00:25:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Walter. He won't start ... 8.688804e+17 4.196984e+09 2017-05-28 17:23:24 +0000 https://twitter.com/dog_rates/status/868880397... 14 10 Walter None None None None
96 873580283840344065 NaN NaN 2017-06-10 16:39:04 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate Deck-bound Saskatoon Bla... NaN NaN NaN https://twitter.com/dog_rates/status/873580283... 13 10 None None None None None
97 873337748698140672 NaN NaN 2017-06-10 00:35:19 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Sierra. She's one preci... 8.732138e+17 4.196984e+09 2017-06-09 16:22:42 +0000 https://www.gofundme.com/help-my-baby-sierra-g... 12 10 Sierra None None pupper None
98 873213775632977920 NaN NaN 2017-06-09 16:22:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sierra. She's one precious pupper. Abs... NaN NaN NaN https://www.gofundme.com/help-my-baby-sierra-g... 12 10 Sierra None None pupper None
99 872967104147763200 NaN NaN 2017-06-09 00:02:31 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very large dog. He has a date later. ... NaN NaN NaN https://twitter.com/dog_rates/status/872967104... 12 10 None doggo None None None
100 872820683541237760 NaN NaN 2017-06-08 14:20:41 +0000 <a href="http://twitter.com/download/iphone" r... Here are my favorite #dogsatpollingstations \n... NaN NaN NaN https://twitter.com/dog_rates/status/872820683... 13 10 None None None None None
101 872668790621863937 NaN NaN 2017-06-08 04:17:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @loganamnosis: Penelope here is doing me qu... 8.726576e+17 1.547674e+08 2017-06-08 03:32:35 +0000 https://twitter.com/loganamnosis/status/872657... 14 10 None None None None None
102 872620804844003328 NaN NaN 2017-06-08 01:06:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Monkey. She's supporting owners everyw... NaN NaN NaN https://twitter.com/dog_rates/status/872620804... 13 10 Monkey None None None None
103 872486979161796608 NaN NaN 2017-06-07 16:14:40 +0000 <a href="http://twitter.com/download/iphone" r... We. Only. Rate. Dogs. Do not send in other thi... NaN NaN NaN https://twitter.com/dog_rates/status/872486979... 12 10 None None None None None
104 872261713294495745 NaN NaN 2017-06-07 01:19:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Harry. His ears are activated one at a... NaN NaN NaN https://twitter.com/dog_rates/status/872261713... 13 10 Harry None None None None
105 872122724285648897 NaN NaN 2017-06-06 16:07:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Kody. He's a baller. Wishes he was a l... NaN NaN NaN https://twitter.com/dog_rates/status/872122724... 12 10 Kody None None None None
106 871879754684805121 NaN NaN 2017-06-06 00:01:46 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lassie. She's celebrating #PrideM... NaN NaN NaN https://twitter.com/dog_rates/status/871879754... 13 10 Lassie None None None None
107 871762521631449091 NaN NaN 2017-06-05 16:15:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Rover. As part of pupper protocol he h... NaN NaN NaN https://twitter.com/dog_rates/status/871762521... 12 10 Rover None None pupper None
108 871515927908634625 NaN NaN 2017-06-04 23:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Napolean. He's a Raggedy East Nicaragu... NaN NaN NaN https://twitter.com/dog_rates/status/871515927... 12 10 Napolean doggo None None None
109 871166179821445120 NaN NaN 2017-06-04 00:46:17 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Dawn. She's just checki... 8.410770e+17 4.196984e+09 2017-03-13 00:02:39 +0000 https://twitter.com/dog_rates/status/841077006... 12 10 Dawn None None None None
110 871102520638267392 NaN NaN 2017-06-03 20:33:19 +0000 <a href="http://twitter.com/download/iphone" r... Never doubt a doggo 14/10 https://t.co/AbBLh2FZCH NaN NaN NaN https://twitter.com/animalcog/status/871075758... 14 10 None doggo None None None
111 871032628920680449 NaN NaN 2017-06-03 15:55:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Boomer. He's doing an advanced water t... NaN NaN NaN https://twitter.com/dog_rates/status/871032628... 13 10 Boomer None None None None
112 870804317367881728 NaN NaN 2017-06-03 00:48:22 +0000 <a href="http://twitter.com/download/iphone" r... Real funny guys. Sending in a pic without a do... NaN NaN NaN https://twitter.com/dog_rates/status/870804317... 11 10 None None None None None
113 870726314365509632 8.707262e+17 1.648776e+07 2017-06-02 19:38:25 +0000 <a href="http://twitter.com/download/iphone" r... @ComplicitOwl @ShopWeRateDogs &gt;10/10 is res... NaN NaN NaN NaN 10 10 None None None None None
114 870656317836468226 NaN NaN 2017-06-02 15:00:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Cody. He zoomed too aggressively and t... NaN NaN NaN https://www.gofundme.com/help-fix-codys-torn-a... 13 10 Cody None None None None
115 870374049280663552 NaN NaN 2017-06-01 20:18:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. She really likes the planet. Wou... NaN NaN NaN https://twitter.com/dog_rates/status/870374049... 13 10 Zoey None None None None
116 870308999962521604 NaN NaN 2017-06-01 16:00:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumble, but he's not ready to. Would r... NaN NaN NaN https://twitter.com/dog_rates/status/870308999... 13 10 Rumble None None None None
117 870063196459192321 NaN NaN 2017-05-31 23:43:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Clifford. He's quite large. Also red. Goo... NaN NaN NaN https://twitter.com/dog_rates/status/870063196... 14 10 Clifford None None None None
118 869988702071779329 NaN NaN 2017-05-31 18:47:24 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We only rate dogs. This is quit... 8.591970e+17 4.196984e+09 2017-05-02 00:04:57 +0000 https://twitter.com/dog_rates/status/859196978... 12 10 quite None None None None
119 869772420881756160 NaN NaN 2017-05-31 04:27:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Dewey (pronounced "covfefe"). He's hav... NaN NaN NaN https://twitter.com/dog_rates/status/869772420... 13 10 Dewey None None None None
120 869702957897576449 NaN NaN 2017-05-30 23:51:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stanley. He likes road trips. Will shift ... NaN NaN NaN https://twitter.com/dog_rates/status/869702957... 13 10 Stanley None None None None
121 869596645499047938 NaN NaN 2017-05-30 16:49:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. He just graduated. Officially a... NaN NaN NaN https://twitter.com/dog_rates/status/869596645... 12 10 Scout doggo None None None
122 869227993411051520 NaN NaN 2017-05-29 16:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Gizmo. His favorite thing is standing ... NaN NaN NaN https://twitter.com/dog_rates/status/869227993... 13 10 Gizmo None None None None
123 868880397819494401 NaN NaN 2017-05-28 17:23:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He won't start hydrotherapy wi... NaN NaN NaN https://twitter.com/dog_rates/status/868880397... 14 10 Walter None None None None
124 868639477480148993 NaN NaN 2017-05-28 01:26:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Say hello to Cooper. His expres... 8.685523e+17 4.196984e+09 2017-05-27 19:39:34 +0000 https://www.gofundme.com/3ti3nps,https://twitt... 12 10 Cooper None None None None
125 868622495443632128 NaN NaN 2017-05-28 00:18:35 +0000 <a href="http://twitter.com/download/iphone" r... Here's a h*ckin peaceful boy. Unbothered by th... NaN NaN NaN https://twitter.com/dog_rates/status/868622495... 13 10 None None None None None
126 868552278524837888 NaN NaN 2017-05-27 19:39:34 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Cooper. His expression is the sam... NaN NaN NaN https://www.gofundme.com/3ti3nps,https://twitt... 12 10 Cooper None None None None
127 867900495410671616 NaN NaN 2017-05-26 00:29:37 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable. We only rate dogs. Please don't ... NaN NaN NaN https://twitter.com/dog_rates/status/867900495... 12 10 None None None None None
128 867774946302451713 NaN NaN 2017-05-25 16:10:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Harold. He's h*ckin cooperative. 13/10 g... NaN NaN NaN https://twitter.com/dog_rates/status/867774946... 13 10 Harold None None None None
129 867421006826221569 NaN NaN 2017-05-24 16:44:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Shikha. She just watched you drop a sk... NaN NaN NaN https://twitter.com/dog_rates/status/867421006... 12 10 Shikha None None None puppo
130 867072653475098625 NaN NaN 2017-05-23 17:40:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @rachaeleasler: these @dog_rates hats are 1... 8.650134e+17 7.874618e+17 2017-05-18 01:17:25 +0000 https://twitter.com/rachaeleasler/status/86501... 13 10 None None None None None
131 867051520902168576 NaN NaN 2017-05-23 16:16:06 +0000 <a href="http://twitter.com/download/iphone" r... Oh my this spooked me up. We only rate dogs, n... NaN NaN NaN https://twitter.com/dog_rates/status/867051520... 13 10 None None None None None
132 866816280283807744 NaN NaN 2017-05-23 00:41:20 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Jamesy. He gives a kiss... 8.664507e+17 4.196984e+09 2017-05-22 00:28:40 +0000 https://twitter.com/dog_rates/status/866450705... 13 10 Jamesy None None pupper None
133 866720684873056260 NaN NaN 2017-05-22 18:21:28 +0000 <a href="http://twitter.com/download/iphone" r... He was providing for his family 13/10 how dare... NaN NaN NaN https://twitter.com/nbcnews/status/86645871888... 13 10 None None None None None
134 866686824827068416 NaN NaN 2017-05-22 16:06:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Lili. She can't believe you betrayed h... NaN NaN NaN https://twitter.com/dog_rates/status/866686824... 12 10 Lili None None None None
135 866450705531457537 NaN NaN 2017-05-22 00:28:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Jamesy. He gives a kiss to every other... NaN NaN NaN https://twitter.com/dog_rates/status/866450705... 13 10 Jamesy None None pupper None
136 866334964761202691 NaN NaN 2017-05-21 16:48:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Coco. At first I thought she was a clo... NaN NaN NaN https://twitter.com/dog_rates/status/866334964... 12 10 Coco None None None None
137 866094527597207552 NaN NaN 2017-05-21 00:53:21 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Here's a pupper before and afte... 8.378202e+17 4.196984e+09 2017-03-04 00:21:08 +0000 https://twitter.com/dog_rates/status/837820167... 12 10 None None None pupper None
138 865718153858494464 NaN NaN 2017-05-19 23:57:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Boomer. He's just checking pup on you. Ho... NaN NaN NaN https://twitter.com/dog_rates/status/865718153... 13 10 Boomer None None None None
139 865359393868664832 NaN NaN 2017-05-19 00:12:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Sammy. Her tongue ejects without warni... NaN NaN NaN https://twitter.com/dog_rates/status/865359393... 13 10 Sammy None None None None
140 865006731092295680 NaN NaN 2017-05-18 00:50:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Nelly. He really hopes you like his Ha... NaN NaN NaN https://twitter.com/dog_rates/status/865006731... 13 10 Nelly None None None None
141 864873206498414592 NaN NaN 2017-05-17 16:00:15 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in Jesus.... NaN NaN NaN https://twitter.com/dog_rates/status/864873206... 14 10 None None None None None
142 864279568663928832 NaN NaN 2017-05-16 00:41:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Meatball. He doing what's known in the... NaN NaN NaN https://twitter.com/dog_rates/status/864279568... 12 10 Meatball None None None None
143 864197398364647424 NaN NaN 2017-05-15 19:14:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Paisley. She ate a flower just to prov... NaN NaN NaN https://twitter.com/dog_rates/status/864197398... 13 10 Paisley None None None None
144 863907417377173506 NaN NaN 2017-05-15 00:02:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Albus. He's quite impressive at hide a... NaN NaN NaN https://twitter.com/dog_rates/status/863907417... 13 10 Albus None None None None
145 863553081350529029 NaN NaN 2017-05-14 00:34:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Neptune. He's a backpup vocalist for t... NaN NaN NaN https://twitter.com/dog_rates/status/863553081... 13 10 Neptune None None None None
146 863471782782697472 NaN NaN 2017-05-13 19:11:30 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Say hello to Quinn. She's quite... 8.630625e+17 4.196984e+09 2017-05-12 16:05:02 +0000 https://www.gofundme.com/helpquinny,https://tw... 13 10 Quinn None None None None
147 863432100342583297 NaN NaN 2017-05-13 16:33:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Belle. She's never been more pupset. E... NaN NaN NaN https://twitter.com/dog_rates/status/863432100... 12 10 Belle None None None None
148 863427515083354112 8.634256e+17 7.759620e+07 2017-05-13 16:15:35 +0000 <a href="http://twitter.com/download/iphone" r... @Jack_Septic_Eye I'd need a few more pics to p... NaN NaN NaN NaN 12 10 None None None None None
149 863079547188785154 6.671522e+17 4.196984e+09 2017-05-12 17:12:53 +0000 <a href="http://twitter.com/download/iphone" r... Ladies and gentlemen... I found Pipsy. He may ... NaN NaN NaN https://twitter.com/dog_rates/status/863079547... 14 10 None None None None None
150 863062471531167744 NaN NaN 2017-05-12 16:05:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Quinn. She's quite the goofball. ... NaN NaN NaN https://www.gofundme.com/helpquinny,https://tw... 13 10 Quinn None None None None
151 862831371563274240 NaN NaN 2017-05-12 00:46:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Zooey. She's the world's biggest fan o... NaN NaN NaN https://twitter.com/dog_rates/status/862831371... 13 10 Zooey None None None None
152 862722525377298433 NaN NaN 2017-05-11 17:34:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Dave. He passed the h*ck out. It's bar... NaN NaN NaN https://twitter.com/dog_rates/status/862722525... 11 10 Dave None None None None
153 862457590147678208 NaN NaN 2017-05-11 00:01:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Jersey. He likes to watch movies, but ... NaN NaN NaN https://twitter.com/dog_rates/status/862457590... 13 10 Jersey None None None None
154 862096992088072192 NaN NaN 2017-05-10 00:08:34 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send perfectly... NaN NaN NaN https://twitter.com/dog_rates/status/862096992... 13 10 None None None None None
155 861769973181624320 NaN NaN 2017-05-09 02:29:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: "Good afternoon class today we'... 8.066291e+17 4.196984e+09 2016-12-07 22:38:52 +0000 https://twitter.com/dog_rates/status/806629075... 13 10 None None None None None
156 861383897657036800 NaN NaN 2017-05-08 00:54:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Hobbes. He's never seen bubbles before... NaN NaN NaN https://twitter.com/dog_rates/status/861383897... 13 10 Hobbes None None None None
157 861288531465048066 NaN NaN 2017-05-07 18:36:02 +0000 <a href="http://twitter.com/download/iphone" r... HI. MY. NAME. IS. BOOMER. AND. I. WANT. TO. SA... NaN NaN NaN https://twitter.com/dog_rates/status/861288531... 13 10 None None None None None
158 861005113778896900 NaN NaN 2017-05-06 23:49:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Burt. He thinks your thesis statement ... NaN NaN NaN https://twitter.com/dog_rates/status/861005113... 12 10 Burt None None None None
159 860981674716409858 NaN NaN 2017-05-06 22:16:42 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Lorenzo. He's an avid nift... 8.605638e+17 4.196984e+09 2017-05-05 18:36:06 +0000 https://www.gofundme.com/help-lorenzo-beat-can... 13 10 Lorenzo None None None None
160 860924035999428608 NaN NaN 2017-05-06 18:27:40 +0000 <a href="http://twitter.com/download/iphone" r... RT @tallylott: h*ckin adorable promposal. 13/1... 8.609145e+17 3.638908e+08 2017-05-06 17:49:42 +0000 https://twitter.com/tallylott/status/860914485... 13 10 None None None None None
161 860563773140209665 NaN NaN 2017-05-05 18:36:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lorenzo. He's an avid nifty hat wearer an... NaN NaN NaN https://www.gofundme.com/help-lorenzo-beat-can... 13 10 Lorenzo None None None None
162 860524505164394496 NaN NaN 2017-05-05 16:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Carl. He likes to dance. Doesn't care ... NaN NaN NaN https://twitter.com/dog_rates/status/860524505... 13 10 Carl None None None None
163 860276583193509888 NaN NaN 2017-05-04 23:34:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jordy. He likes to go on adventures an... NaN NaN NaN https://twitter.com/dog_rates/status/860276583... 12 10 Jordy None None None None
164 860184849394610176 NaN NaN 2017-05-04 17:30:24 +0000 <a href="http://twitter.com/download/iphone" r... Here we have perhaps the wisest dog of all. Ab... NaN NaN NaN https://twitter.com/dog_rates/status/860184849... 14 10 None None None None None
165 860177593139703809 NaN NaN 2017-05-04 17:01:34 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Ohboyohboyohboyohboyohboyohboyo... 7.616730e+17 4.196984e+09 2016-08-05 21:19:27 +0000 https://twitter.com/dog_rates/status/761672994... 10 10 None None None None None
166 859924526012018688 NaN NaN 2017-05-04 00:15:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Milky. She has no idea what happened. Jus... NaN NaN NaN https://twitter.com/dog_rates/status/859924526... 12 10 Milky None None None None
167 859851578198683649 NaN NaN 2017-05-03 19:26:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Trooper. He picks pup recyclables that ha... NaN NaN NaN https://twitter.com/dog_rates/status/859851578... 13 10 Trooper None None None None
168 859607811541651456 NaN NaN 2017-05-03 03:17:27 +0000 <a href="http://twitter.com/download/iphone" r... Sorry for the lack of posts today. I came home... NaN NaN NaN https://twitter.com/dog_rates/status/859607811... 13 10 None None None None puppo
169 859196978902773760 NaN NaN 2017-05-02 00:04:57 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. This is quite clearly a smo... NaN NaN NaN https://twitter.com/dog_rates/status/859196978... 12 10 quite None None None None
170 859074603037188101 NaN NaN 2017-05-01 15:58:40 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an exotic dog. Good at ukulele. F... NaN NaN NaN https://twitter.com/dog_rates/status/859074603... 13 10 None None None None None
171 858860390427611136 NaN NaN 2017-05-01 01:47:28 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Winston. He knows he's a l... 8.395493e+17 4.196984e+09 2017-03-08 18:52:12 +0000 https://twitter.com/dog_rates/status/839549326... 12 10 Winston None None None None
172 858843525470990336 NaN NaN 2017-05-01 00:40:27 +0000 <a href="http://twitter.com/download/iphone" r... I have stumbled puppon a doggo painting party.... NaN NaN NaN https://twitter.com/dog_rates/status/858843525... 13 10 None doggo None None None
173 858471635011153920 NaN NaN 2017-04-30 00:02:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Sophie. She just arrived. Used paworit... NaN NaN NaN https://twitter.com/dog_rates/status/858471635... 13 10 Sophie None None None None
174 858107933456039936 NaN NaN 2017-04-28 23:57:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. He had an interview earlier tod... NaN NaN NaN https://twitter.com/dog_rates/status/858107933... 12 10 Wyatt None None None None
175 857989990357356544 NaN NaN 2017-04-28 16:08:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Rosie. She was just informed of the wa... NaN NaN NaN https://twitter.com/dog_rates/status/857989990... 12 10 Rosie None None None None
176 857746408056729600 NaN NaN 2017-04-28 00:00:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Thor. He doesn't have finals because he's... NaN NaN NaN https://twitter.com/dog_rates/status/857746408... 13 10 Thor None None None None
177 857393404942143489 NaN NaN 2017-04-27 00:38:11 +0000 <a href="http://twitter.com/download/iphone" r... Instead of the usual nightly dog rate, I'm sha... NaN NaN NaN https://www.gofundme.com/meeko-needs-heart-sur... 13 10 None None None None None
178 857263160327368704 NaN NaN 2017-04-26 16:00:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar and Oliver. Oliver shrunk Oscar.... NaN NaN NaN https://twitter.com/dog_rates/status/857263160... 13 10 Oscar None None None None
179 857214891891077121 8.571567e+17 1.806710e+08 2017-04-26 12:48:51 +0000 <a href="http://twitter.com/download/iphone" r... @Marc_IRL pixelated af 12/10 NaN NaN NaN NaN 12 10 None None None None None
180 857062103051644929 NaN NaN 2017-04-26 02:41:43 +0000 <a href="http://twitter.com/download/iphone" r... RT @AaronChewning: First time wearing my @dog_... 8.570611e+17 5.870972e+07 2017-04-26 02:37:47 +0000 https://twitter.com/AaronChewning/status/85706... 13 10 None None None None None
181 857029823797047296 NaN NaN 2017-04-26 00:33:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke. He performs group cheeky wink tu... NaN NaN NaN https://twitter.com/dog_rates/status/857029823... 12 10 Zeke None None None None
182 856602993587888130 NaN NaN 2017-04-24 20:17:23 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Luna. It's her first ti... 8.447048e+17 4.196984e+09 2017-03-23 00:18:10 +0000 https://twitter.com/dog_rates/status/844704788... 13 10 Luna None None None None
183 856543823941562368 NaN NaN 2017-04-24 16:22:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Callie. She'll be your navigator today... NaN NaN NaN https://twitter.com/dog_rates/status/856543823... 12 10 Callie None None None None
184 856526610513747968 8.558181e+17 4.196984e+09 2017-04-24 15:13:52 +0000 <a href="http://twitter.com/download/iphone" r... THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY... NaN NaN NaN https://twitter.com/dog_rates/status/856526610... 14 10 None None None None None
185 856330835276025856 NaN NaN 2017-04-24 02:15:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @Jenna_Marbles: @dog_rates Thanks for ratin... 8.563302e+17 6.669901e+07 2017-04-24 02:13:14 +0000 NaN 14 10 None None None None None
186 856288084350160898 8.562860e+17 2.792810e+08 2017-04-23 23:26:03 +0000 <a href="http://twitter.com/download/iphone" r... @xianmcguire @Jenna_Marbles Kardashians wouldn... NaN NaN NaN NaN 14 10 None None None None None
187 856282028240666624 NaN NaN 2017-04-23 23:01:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Cermet, Paesh, and Morple. They are ab... NaN NaN NaN https://twitter.com/dog_rates/status/856282028... 14 10 Cermet None None None None
188 855862651834028034 8.558616e+17 1.943518e+08 2017-04-22 19:15:32 +0000 <a href="http://twitter.com/download/iphone" r... @dhmontgomery We also gave snoop dogg a 420/10... NaN NaN NaN NaN 420 10 None None None None None
189 855860136149123072 8.558585e+17 1.361572e+07 2017-04-22 19:05:32 +0000 <a href="http://twitter.com/download/iphone" r... @s8n You tried very hard to portray this good ... NaN NaN NaN NaN 666 10 None None None None None
190 855857698524602368 NaN NaN 2017-04-22 18:55:51 +0000 <a href="http://twitter.com/download/iphone" r... HE'S LIKE "WAIT A MINUTE I'M AN ANIMAL THIS IS... NaN NaN NaN https://twitter.com/perfy/status/8558573181681... 13 10 None None None None None
191 855851453814013952 NaN NaN 2017-04-22 18:31:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a puppo participating in the #ScienceMa... NaN NaN NaN https://twitter.com/dog_rates/status/855851453... 13 10 None doggo None None puppo
192 855818117272018944 NaN NaN 2017-04-22 16:18:34 +0000 <a href="http://twitter.com/download/iphone" r... I HEARD HE TIED HIS OWN BOWTIE MARK AND HE JUS... NaN NaN NaN https://twitter.com/markhalperin/status/855656... 13 10 None None None None None
193 855459453768019968 NaN NaN 2017-04-21 16:33:22 +0000 <a href="http://twitter.com/download/iphone" r... Guys, we only rate dogs. This is quite clearly... NaN NaN NaN https://twitter.com/dog_rates/status/855459453... 12 10 quite None None None None
194 855245323840757760 NaN NaN 2017-04-21 02:22:29 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet George. He looks slightly ... 8.421635e+17 4.196984e+09 2017-03-16 00:00:07 +0000 https://twitter.com/dog_rates/status/842163532... 12 10 George None None None None
195 855138241867124737 NaN NaN 2017-04-20 19:16:59 +0000 <a href="http://twitter.com/download/iphone" r... RT @frasercampbell_: oh my... what's that... b... 8.551225e+17 7.475543e+17 2017-04-20 18:14:33 +0000 https://twitter.com/frasercampbell_/status/855... 14 10 None None None None None
196 854732716440526848 NaN NaN 2017-04-19 16:25:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Marlee. She fetched a flower and immed... NaN NaN NaN https://twitter.com/dog_rates/status/854732716... 12 10 Marlee None None None None
197 854482394044301312 NaN NaN 2017-04-18 23:50:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Arya. She can barely contain her excit... NaN NaN NaN https://twitter.com/dog_rates/status/854482394... 13 10 Arya None None None None
198 854365224396361728 NaN NaN 2017-04-18 16:05:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Einstein. He's having a really good da... NaN NaN NaN https://twitter.com/dog_rates/status/854365224... 13 10 Einstein None None None None
199 854120357044912130 NaN NaN 2017-04-17 23:52:16 +0000 <a href="http://twitter.com/download/iphone" r... Sometimes you guys remind me just how impactfu... NaN NaN NaN https://twitter.com/dog_rates/status/854120357... 14 10 None None None pupper None
200 854010172552949760 NaN NaN 2017-04-17 16:34:26 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a shy doggo, but i... NaN NaN NaN https://twitter.com/dog_rates/status/854010172... 11 10 None doggo floofer None None
201 853760880890318849 NaN NaN 2017-04-17 00:03:50 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Alice. I'm told she enjoys car ri... NaN NaN NaN https://twitter.com/dog_rates/status/853760880... 12 10 Alice None None None None
202 853639147608842240 NaN NaN 2017-04-16 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... A photographer took pictures before and after ... NaN NaN NaN https://twitter.com/dog_rates/status/853639147... 13 10 None None None None None
203 853299958564483072 NaN NaN 2017-04-15 17:32:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Rumpole. He'll be your Uber driver thi... NaN NaN NaN https://twitter.com/dog_rates/status/853299958... 13 10 Rumpole None None None None
204 852936405516943360 NaN NaN 2017-04-14 17:27:40 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I usually only share these on F... 8.316501e+17 4.196984e+09 2017-02-14 23:43:18 +0000 http://www.gofundme.com/bluethewhitehusky,http... 13 10 None None None None None
205 852912242202992640 NaN NaN 2017-04-14 15:51:39 +0000 <a href="http://twitter.com/download/iphone" r... Meet Benny. He likes being adorable and making... NaN NaN NaN https://www.gofundme.com/bennys-medical-bills,... 12 10 Benny None None None None
206 852672615818899456 NaN NaN 2017-04-13 23:59:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Aspen. She's never tasted a stick so s... NaN NaN NaN https://twitter.com/dog_rates/status/852672615... 12 10 Aspen None None None None
207 852553447878664193 NaN NaN 2017-04-13 16:05:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Jarod. He likes having his belly brush... NaN NaN NaN https://twitter.com/dog_rates/status/852553447... 13 10 Jarod None None None None
208 852311364735569921 NaN NaN 2017-04-13 00:03:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wiggles. She would like you to spot he... NaN NaN NaN https://twitter.com/dog_rates/status/852311364... 13 10 Wiggles None None None None
209 852226086759018497 NaN NaN 2017-04-12 18:25:07 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet General. He wasn't content with the quali... NaN NaN NaN https://twitter.com/dog_rates/status/852226086... 14 10 General None None None None
210 852189679701164033 NaN NaN 2017-04-12 16:00:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Sailor. He has collected the best dirt... NaN NaN NaN https://twitter.com/dog_rates/status/852189679... 12 10 Sailor None None None None
211 851953902622658560 NaN NaN 2017-04-12 00:23:33 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Astrid. She's a guide d... 8.293743e+17 4.196984e+09 2017-02-08 17:00:26 +0000 https://twitter.com/dog_rates/status/829374341... 13 10 Astrid doggo None None None
212 851861385021730816 NaN NaN 2017-04-11 18:15:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @eddie_coe98: Thanks @dog_rates completed m... 8.482894e+17 3.410211e+08 2017-04-01 21:42:03 +0000 https://twitter.com/eddie_coe98/status/8482893... 10 10 None None None None None
213 851591660324737024 NaN NaN 2017-04-11 00:24:08 +0000 <a href="http://twitter.com/download/iphone" r... Oh jeez u did me quite the spook little fella.... NaN NaN NaN https://twitter.com/dog_rates/status/851591660... 11 10 None None None None None
214 851464819735769094 NaN NaN 2017-04-10 16:00:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Iggy. He was a rescue dog killed in th... NaN NaN NaN https://twitter.com/dog_rates/status/851464819... 14 10 Iggy None None None None
215 851224888060895234 NaN NaN 2017-04-10 00:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Snoop. His number one passion is sticking... NaN NaN NaN https://twitter.com/dog_rates/status/851224888... 13 10 Snoop None None None None
216 850753642995093505 NaN NaN 2017-04-08 16:54:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Kyle. He made a joke about your shoes,... NaN NaN NaN https://twitter.com/dog_rates/status/850753642... 11 10 Kyle None None None None
217 850380195714523136 NaN NaN 2017-04-07 16:10:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He's a personal triathlon coach. ... NaN NaN NaN https://twitter.com/dog_rates/status/850380195... 13 10 Leo None None None None
218 850333567704068097 8.503288e+17 2.195506e+07 2017-04-07 13:04:55 +0000 <a href="http://twitter.com/download/iphone" r... @markhoppus MARK THAT DOG HAS SEEN AND EXPERIE... NaN NaN NaN NaN 13 10 None None None None None
219 850145622816686080 NaN NaN 2017-04-07 00:38:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Riley. He's making new friends. Jubila... NaN NaN NaN https://twitter.com/dog_rates/status/850145622... 11 10 Riley None None None None
220 850019790995546112 NaN NaN 2017-04-06 16:18:05 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Boomer. He's a sandy pupper. Havi... NaN NaN NaN https://twitter.com/dog_rates/status/850019790... 12 10 Boomer None None pupper None
221 849776966551130114 NaN NaN 2017-04-06 00:13:11 +0000 <a href="http://twitter.com/download/iphone" r... Seriously guys? Again? We only rate dogs. Plea... NaN NaN NaN https://twitter.com/dog_rates/status/849776966... 12 10 None None None None None
222 849668094696017920 NaN NaN 2017-04-05 17:00:34 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Gidget. She's a spy pup... 8.331247e+17 4.196984e+09 2017-02-19 01:23:00 +0000 https://twitter.com/dog_rates/status/833124694... 12 10 Gidget None None pupper None
223 849412302885593088 NaN NaN 2017-04-05 00:04:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Noosh. He noticed you were in the show... NaN NaN NaN https://twitter.com/dog_rates/status/849412302... 12 10 Noosh None None None None
224 849336543269576704 NaN NaN 2017-04-04 19:03:06 +0000 <a href="http://twitter.com/download/iphone" r... At first I thought this was a dog because of t... NaN NaN NaN https://twitter.com/dog_rates/status/849336543... 11 10 None None None None None
225 849051919805034497 NaN NaN 2017-04-04 00:12:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevin. Kevin doesn't give a single h*c... NaN NaN NaN https://twitter.com/dog_rates/status/849051919... 13 10 Kevin None None None None
226 848690551926992896 NaN NaN 2017-04-03 00:16:10 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in animals other than dogs... NaN NaN NaN https://twitter.com/dog_rates/status/848690551... 12 10 None None None None None
227 848324959059550208 NaN NaN 2017-04-02 00:03:26 +0000 <a href="http://twitter.com/download/iphone" r... Meet Odin. He's supposed to be giving directio... NaN NaN NaN https://twitter.com/dog_rates/status/848324959... 12 10 Odin None None None None
228 848213670039564288 8.482121e+17 4.196984e+09 2017-04-01 16:41:12 +0000 <a href="http://twitter.com/download/iphone" r... Jerry just apuppologized to me. He said there ... NaN NaN NaN NaN 11 10 None None None None None
229 848212111729840128 NaN NaN 2017-04-01 16:35:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's doing a distinguished tong... NaN NaN NaN https://twitter.com/dog_rates/status/848212111... 6 10 Jerry None None None None
230 847978865427394560 NaN NaN 2017-04-01 01:08:10 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Charlie. He fell asleep... 8.323699e+17 4.196984e+09 2017-02-16 23:23:38 +0000 https://twitter.com/dog_rates/status/832369877... 11 10 Charlie None None None None
231 847971574464610304 NaN NaN 2017-04-01 00:39:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @basic_vacek_: I love my new mug easy 13/10... 8.479710e+17 5.970642e+08 2017-04-01 00:36:55 +0000 https://twitter.com/basic_vacek_/status/847971... 13 10 None None None None None
232 847962785489326080 NaN NaN 2017-04-01 00:04:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Georgie. He's very shy. Only puppears ... NaN NaN NaN https://twitter.com/dog_rates/status/847962785... 10 10 Georgie None None None None
233 847842811428974592 NaN NaN 2017-03-31 16:07:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Rontu. He is described as a pal, cuddl... NaN NaN NaN https://www.gofundme.com/help-save-rontu,https... 12 10 Rontu None None None None
234 847617282490613760 8.476062e+17 4.196984e+09 2017-03-31 01:11:22 +0000 <a href="http://twitter.com/download/iphone" r... .@breaannanicolee PUPDATE: Cannon has a heart ... NaN NaN NaN NaN 13 10 None None None None None
235 847606175596138505 NaN NaN 2017-03-31 00:27:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Cannon. He just heard something behind... NaN NaN NaN https://twitter.com/dog_rates/status/847606175... 12 10 Cannon None None None None
236 847251039262605312 NaN NaN 2017-03-30 00:56:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Furzey. He's doing an elevated sandy z... NaN NaN NaN https://twitter.com/dog_rates/status/847251039... 12 10 Furzey None None None None
237 847157206088847362 NaN NaN 2017-03-29 18:43:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's been pup for adoption for mo... NaN NaN NaN https://www.petfinder.com/petdetail/37334596,h... 11 10 Daisy None None None None
238 847116187444137987 NaN NaN 2017-03-29 16:00:12 +0000 <a href="http://twitter.com/download/iphone" r... Unbelievable... We. Only. Rate. Dogs. Please s... NaN NaN NaN https://twitter.com/dog_rates/status/847116187... 11 10 None None None None None
239 846874817362120707 NaN NaN 2017-03-29 00:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Tuck. As you can see, he's rather h*ck... NaN NaN NaN https://twitter.com/dog_rates/status/846874817... 13 10 Tuck None None None None
240 846514051647705089 NaN NaN 2017-03-28 00:07:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Barney. He's an elder doggo. Hitches a... NaN NaN NaN https://twitter.com/dog_rates/status/846514051... 13 10 Barney doggo None None None
241 846505985330044928 NaN NaN 2017-03-27 23:35:28 +0000 <a href="http://twitter.com/download/iphone" r... THIS WAS NOT HIS FAULT HE HAD NO IDEA. 11/10 S... NaN NaN NaN https://twitter.com/shomaristone/status/846484... 11 10 None None None None None
242 846153765933735936 NaN NaN 2017-03-27 00:15:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Vixen. He really likes bananas. Steals... NaN NaN NaN https://twitter.com/dog_rates/status/846153765... 13 10 Vixen None None None None
243 846139713627017216 NaN NaN 2017-03-26 23:20:02 +0000 <a href="http://twitter.com/download/iphone" r... SHE DID AN ICY ZOOM AND KNEW WHEN TO PUT ON TH... NaN NaN NaN https://twitter.com/csncapitals/status/8460884... 13 10 None None None None None
244 846042936437604353 NaN NaN 2017-03-26 16:55:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jarvis. The snow pupsets him. Officially ... NaN NaN NaN https://twitter.com/dog_rates/status/846042936... 12 10 Jarvis None None None None
245 845812042753855489 NaN NaN 2017-03-26 01:38:00 +0000 <a href="http://twitter.com/download/iphone" r... We usually don't rate polar bears but this one... NaN NaN NaN https://twitter.com/dog_rates/status/845812042... 13 10 None None None None None
246 845677943972139009 NaN NaN 2017-03-25 16:45:08 +0000 <a href="http://twitter.com/download/iphone" r... C'mon guys. Please only send in dogs. We only ... NaN NaN NaN https://twitter.com/dog_rates/status/845677943... 12 10 None None None None None
247 845459076796616705 NaN NaN 2017-03-25 02:15:26 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Here's a heartwarming scene of ... 7.562885e+17 4.196984e+09 2016-07-22 00:43:32 +0000 https://twitter.com/dog_rates/status/756288534... 12 10 None None None None None
248 845397057150107648 NaN NaN 2017-03-24 22:08:59 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mimosa. She's an emotional suppor... NaN NaN NaN https://www.gofundme.com/help-save-a-pup,https... 13 10 Mimosa doggo None None None
249 845306882940190720 NaN NaN 2017-03-24 16:10:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Pickles. She's a silly pupper. Thinks ... NaN NaN NaN https://twitter.com/dog_rates/status/845306882... 12 10 Pickles None None pupper None
250 845098359547420673 NaN NaN 2017-03-24 02:22:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bungalo. She uses that ... 7.733088e+17 4.196984e+09 2016-09-06 23:56:05 +0000 https://twitter.com/dog_rates/status/773308824... 12 10 Bungalo None None None None
251 844979544864018432 7.590995e+17 4.196984e+09 2017-03-23 18:29:57 +0000 <a href="http://twitter.com/download/iphone" r... PUPDATE: I'm proud to announce that Toby is 23... NaN NaN NaN https://twitter.com/dog_rates/status/844979544... 13 10 None None None None None
252 844973813909606400 NaN NaN 2017-03-23 18:07:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Brady. He's a recovering alcoholic. De... NaN NaN NaN https://twitter.com/dog_rates/status/844973813... 12 10 Brady None None None None
253 844704788403113984 NaN NaN 2017-03-23 00:18:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Luna. It's her first time outside and ... NaN NaN NaN https://twitter.com/dog_rates/status/844704788... 13 10 Luna None None None None
254 844580511645339650 NaN NaN 2017-03-22 16:04:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He wants to know if you have ... NaN NaN NaN https://twitter.com/dog_rates/status/844580511... 11 10 Charlie None None None None
255 844223788422217728 NaN NaN 2017-03-21 16:26:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Margo. She just dug pup a massive hole... NaN NaN NaN https://twitter.com/dog_rates/status/844223788... 12 10 Margo None None None None
256 843981021012017153 NaN NaN 2017-03-21 00:22:10 +0000 <a href="http://twitter.com/download/iphone" r... HE WAS DOING A SNOOZE NO SHAME IN A SNOOZE 13/... NaN NaN NaN https://twitter.com/brianstack153/status/79679... 13 10 None None None None None
257 843856843873095681 NaN NaN 2017-03-20 16:08:44 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Sadie and Daisy. They do all thei... NaN NaN NaN https://twitter.com/dog_rates/status/843856843... 12 10 Sadie None None None None
258 843604394117681152 NaN NaN 2017-03-19 23:25:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Hank. He's been outside for 3 minutes ... NaN NaN NaN https://twitter.com/dog_rates/status/843604394... 11 10 Hank None None None None
259 843235543001513987 NaN NaN 2017-03-18 22:59:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Tycho. She just had new wheels install... NaN NaN NaN https://twitter.com/dog_rates/status/843235543... 13 10 Tycho None None None None
260 842892208864923648 NaN NaN 2017-03-18 00:15:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Stephan. He just wants ... 8.071068e+17 4.196984e+09 2016-12-09 06:17:20 +0000 https://twitter.com/dog_rates/status/807106840... 13 10 Stephan None None None None
261 842846295480000512 NaN NaN 2017-03-17 21:13:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He's wishing you a very fun a... NaN NaN NaN https://twitter.com/dog_rates/status/842846295... 13 10 Charlie None None None None
262 842765311967449089 NaN NaN 2017-03-17 15:51:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Indie. She's not a fan of baths but she's... NaN NaN NaN https://www.gofundme.com/get-indie-home/,https... 12 10 Indie None None None None
263 842535590457499648 NaN NaN 2017-03-17 00:38:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Winnie. She lost her body saving a chi... NaN NaN NaN https://twitter.com/dog_rates/status/842535590... 13 10 Winnie None None None None
264 842163532590374912 NaN NaN 2017-03-16 00:00:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet George. He looks slightly deflated but ov... NaN NaN NaN https://twitter.com/dog_rates/status/842163532... 12 10 George None None None None
265 842115215311396866 NaN NaN 2017-03-15 20:48:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. It's his first time going to ... NaN NaN NaN https://twitter.com/dog_rates/status/842115215... 12 10 Bentley None None None None
266 841833993020538882 NaN NaN 2017-03-15 02:10:39 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Ken. His cheeks are mag... 8.174239e+17 4.196984e+09 2017-01-06 17:33:29 +0000 https://twitter.com/dog_rates/status/817423860... 13 10 Ken None None None None
267 841680585030541313 NaN NaN 2017-03-14 16:01:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's a dragon slayer. Feared b... NaN NaN NaN https://twitter.com/dog_rates/status/841680585... 12 10 Penny None None None None
268 841439858740625411 NaN NaN 2017-03-14 00:04:30 +0000 <a href="http://twitter.com/download/iphone" r... Here we have some incredible doggos for #K9Vet... NaN NaN NaN https://twitter.com/dog_rates/status/841439858... 14 10 None None None None None
269 841320156043304961 NaN NaN 2017-03-13 16:08:50 +0000 <a href="http://twitter.com/download/iphone" r... We don't rate penguins, but if we did, this on... NaN NaN NaN https://twitter.com/abc/status/841311395547250688 12 10 None None None None None
270 841314665196081154 NaN NaN 2017-03-13 15:47:01 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Max. There's no way in h*ck you're tak... NaN NaN NaN https://twitter.com/dog_rates/status/841314665... 13 10 Max None None None None
271 841077006473256960 NaN NaN 2017-03-13 00:02:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Dawn. She's just checking pup on you. ... NaN NaN NaN https://twitter.com/dog_rates/status/841077006... 12 10 Dawn None None None None
272 840761248237133825 NaN NaN 2017-03-12 03:07:56 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Say hello to Maddie and Gunner.... 8.406323e+17 4.196984e+09 2017-03-11 18:35:42 +0000 https://www.gofundme.com/3hgsuu0,https://twitt... 12 10 Maddie None None None None
273 840728873075638272 NaN NaN 2017-03-12 00:59:17 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Pipsy. He is a fluffbal... 6.671522e+17 4.196984e+09 2015-11-19 01:27:25 +0000 https://twitter.com/dog_rates/status/667152164... 12 10 Pipsy None None None None
274 840698636975636481 8.406983e+17 8.405479e+17 2017-03-11 22:59:09 +0000 <a href="http://twitter.com/download/iphone" r... @0_kelvin_0 &gt;10/10 is reserved for puppos s... NaN NaN NaN NaN 10 10 None None None None None
275 840696689258311684 NaN NaN 2017-03-11 22:51:24 +0000 <a href="http://twitter.com/download/iphone" r... I didn't even have to intervene. Took him 4 mi... NaN NaN NaN https://twitter.com/dog_rates/status/840696689... 10 10 None None None None None
276 840632337062862849 NaN NaN 2017-03-11 18:35:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Maddie and Gunner. They are consi... NaN NaN NaN https://www.gofundme.com/3hgsuu0,https://twitt... 12 10 Maddie None None None None
277 840370681858686976 NaN NaN 2017-03-11 01:15:58 +0000 <a href="http://twitter.com/download/iphone" r... You have been visited by the magical sugar jar... NaN NaN NaN https://twitter.com/dog_rates/status/840370681... 13 10 None None None None None
278 840268004936019968 NaN NaN 2017-03-10 18:27:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Monty. He makes instantly regrettable ... NaN NaN NaN https://twitter.com/dog_rates/status/840268004... 12 10 Monty None None None None
279 839990271299457024 NaN NaN 2017-03-10 00:04:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sojourner. His nose is a Fibonacci Spiral... NaN NaN NaN https://twitter.com/dog_rates/status/839990271... 13 10 Sojourner None None None None
280 839549326359670784 NaN NaN 2017-03-08 18:52:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He knows he's a little too big f... NaN NaN NaN https://twitter.com/dog_rates/status/839549326... 12 10 Winston None None None None
281 839290600511926273 NaN NaN 2017-03-08 01:44:07 +0000 <a href="http://twitter.com/download/iphone" r... RT @alexmartindawg: THE DRINK IS DR. PUPPER 10... 8.392899e+17 4.119842e+07 2017-03-08 01:41:24 +0000 https://twitter.com/alexmartindawg/status/8392... 10 10 None None None pupper None
282 839239871831150596 NaN NaN 2017-03-07 22:22:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Odie. He's big. 13/10 would attempt to... NaN NaN NaN https://twitter.com/dog_rates/status/839239871... 13 10 Odie None None None None
283 838952994649550848 NaN NaN 2017-03-07 03:22:35 +0000 <a href="http://twitter.com/download/iphone" r... SHE MISPLACED HER HOOMAN 13/10 MISTAKES HAPPEN... NaN NaN NaN https://twitter.com/ktla/status/83894871422799... 13 10 None None None None None
284 838921590096166913 NaN NaN 2017-03-07 01:17:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Arlo. He's officially the king of snow... NaN NaN NaN https://twitter.com/dog_rates/status/838921590... 13 10 Arlo None None None None
285 838916489579200512 NaN NaN 2017-03-07 00:57:32 +0000 <a href="http://twitter.com/download/iphone" r... RT @KibaDva: I collected all the good dogs!! 1... 8.389060e+17 8.117408e+08 2017-03-07 00:15:46 +0000 https://twitter.com/KibaDva/status/83890598062... 15 10 None None None None None
286 838831947270979586 NaN NaN 2017-03-06 19:21:35 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Riley. His owner put a ... 7.838400e+17 4.196984e+09 2016-10-06 01:23:05 +0000 https://twitter.com/dog_rates/status/783839966... 13 10 Riley None None None None
287 838561493054533637 NaN NaN 2017-03-06 01:26:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. His owner has been watching al... NaN NaN NaN https://twitter.com/dog_rates/status/838561493... 13 10 Walter None None None None
288 838476387338051585 NaN NaN 2017-03-05 19:48:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. Somehow he heard you tell him... NaN NaN NaN https://twitter.com/dog_rates/status/838476387... 13 10 Stanley None None None None
289 838201503651401729 NaN NaN 2017-03-05 01:36:26 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Sunny. He can take down a ... 8.207497e+17 4.196984e+09 2017-01-15 21:49:15 +0000 https://twitter.com/dog_rates/status/820749716... 13 10 Sunny None None None None
290 838150277551247360 8.381455e+17 2.195506e+07 2017-03-04 22:12:52 +0000 <a href="http://twitter.com/download/iphone" r... @markhoppus 182/10 NaN NaN NaN NaN 182 10 None None None None None
291 838085839343206401 8.380855e+17 2.894131e+09 2017-03-04 17:56:49 +0000 <a href="http://twitter.com/download/iphone" r... @bragg6of8 @Andy_Pace_ we are still looking fo... NaN NaN NaN NaN 15 10 None None None None None
292 838083903487373313 NaN NaN 2017-03-04 17:49:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She's puppears to be rare as al... NaN NaN NaN https://twitter.com/dog_rates/status/838083903... 13 10 Daisy None None None None
293 837820167694528512 NaN NaN 2017-03-04 00:21:08 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper before and after being asked "... NaN NaN NaN https://twitter.com/dog_rates/status/837820167... 12 10 None None None pupper None
294 837482249356513284 NaN NaN 2017-03-03 01:58:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. He's a ship captain in real l... NaN NaN NaN https://twitter.com/dog_rates/status/837482249... 13 10 Waffles None None None None
295 837471256429613056 NaN NaN 2017-03-03 01:14:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Vincent. He's suave as h*ck. Will be y... NaN NaN NaN https://twitter.com/dog_rates/status/837471256... 12 10 Vincent None None None None
296 837366284874571778 NaN NaN 2017-03-02 18:17:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She has a portrait of herself on... NaN NaN NaN https://twitter.com/dog_rates/status/837366284... 13 10 Lucy None None None None
297 837110210464448512 NaN NaN 2017-03-02 01:20:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clark. He passed pupper training today... NaN NaN NaN https://twitter.com/dog_rates/status/837110210... 13 10 Clark None None pupper None
298 837012587749474308 NaN NaN 2017-03-01 18:52:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @KennyFromDaBlok: 14/10 h*ckin good hats. w... 8.370113e+17 7.266347e+08 2017-03-01 18:47:10 +0000 https://twitter.com/KennyFromDaBlok/status/837... 14 10 None None None None None
299 836989968035819520 NaN NaN 2017-03-01 17:22:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Mookie. He really enjoys shopping but ... NaN NaN NaN https://twitter.com/dog_rates/status/836989968... 12 10 Mookie None None None None
300 836753516572119041 NaN NaN 2017-03-01 01:42:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Meera. She just heard about taxes and ... NaN NaN NaN https://twitter.com/dog_rates/status/836753516... 12 10 Meera doggo None None None
301 836677758902222849 NaN NaN 2017-02-28 20:41:37 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Oliver. He's pretty exotic. Fairl... NaN NaN NaN https://twitter.com/dog_rates/status/836677758... 11 10 Oliver None None None None
302 836648853927522308 NaN NaN 2017-02-28 18:46:45 +0000 <a href="http://twitter.com/download/iphone" r... RT @SchafeBacon2016: @dog_rates Slightly distu... 8.366481e+17 7.124572e+17 2017-02-28 18:43:57 +0000 https://twitter.com/SchafeBacon2016/status/836... 11 10 None None None None None
303 836397794269200385 NaN NaN 2017-02-28 02:09:08 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Buddy. He ran into a gl... 8.178278e+17 4.196984e+09 2017-01-07 20:18:46 +0000 https://twitter.com/dog_rates/status/817827839... 13 10 Buddy None None None None
304 836380477523124226 NaN NaN 2017-02-28 01:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Ava. She just blasted off. Streamline ... NaN NaN NaN https://twitter.com/dog_rates/status/836380477... 12 10 Ava None None pupper None
305 836260088725786625 NaN NaN 2017-02-27 17:01:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She spent all morning overseeing... NaN NaN NaN https://twitter.com/dog_rates/status/836260088... 13 10 Lucy None None None None
306 836001077879255040 NaN NaN 2017-02-26 23:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Atlas is back and this time he's prettier than... NaN NaN NaN https://twitter.com/dog_rates/status/836001077... 13 10 None None None None None
307 835685285446955009 NaN NaN 2017-02-26 02:57:52 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Rory. He's got an inter... 7.869631e+17 4.196984e+09 2016-10-14 16:13:10 +0000 https://twitter.com/dog_rates/status/786963064... 12 10 Rory None None None None
308 835574547218894849 NaN NaN 2017-02-25 19:37:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Eli. He works backstage at Bone Jovi c... NaN NaN NaN https://twitter.com/dog_rates/status/835574547... 11 10 Eli None None None None
309 835536468978302976 NaN NaN 2017-02-25 17:06:32 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Lola. Her hobbies include ... 8.352641e+17 4.196984e+09 2017-02-24 23:04:14 +0000 https://www.gofundme.com/lolas-life-saving-sur... 12 10 Lola None None None None
310 835309094223372289 NaN NaN 2017-02-25 02:03:02 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: So this just changed my life. 1... 7.530398e+17 4.196984e+09 2016-07-13 01:34:21 +0000 https://vine.co/v/5W2Dg3XPX7a,https://vine.co/... 13 10 None None None None None
311 835297930240217089 NaN NaN 2017-02-25 01:18:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ash. He's a Benebop Cumberplop. Quite rar... NaN NaN NaN https://twitter.com/dog_rates/status/835297930... 12 10 Ash None None None None
312 835264098648616962 NaN NaN 2017-02-24 23:04:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lola. Her hobbies include being precious ... NaN NaN NaN https://www.gofundme.com/lolas-life-saving-sur... 12 10 Lola None None None None
313 835246439529840640 8.352460e+17 2.625958e+07 2017-02-24 21:54:03 +0000 <a href="http://twitter.com/download/iphone" r... @jonnysun @Lin_Manuel ok jomny I know you're e... NaN NaN NaN NaN 960 0 None None None None None
314 835172783151792128 NaN NaN 2017-02-24 17:01:22 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in any no... NaN NaN NaN https://twitter.com/dog_rates/status/835172783... 12 10 None None None None None
315 835152434251116546 NaN NaN 2017-02-24 15:40:31 +0000 <a href="http://twitter.com/download/iphone" r... When you're so blinded by your systematic plag... NaN NaN NaN https://twitter.com/dog_rates/status/835152434... 0 10 None None None None None
316 834931633769889797 NaN NaN 2017-02-24 01:03:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He decided it was time to part... NaN NaN NaN https://twitter.com/dog_rates/status/834931633... 12 10 Tucker None None None None
317 834786237630337024 NaN NaN 2017-02-23 15:25:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Tobi. She is properly fetching her sho... NaN NaN NaN https://twitter.com/dog_rates/status/834786237... 13 10 Tobi None None None None
318 834574053763584002 NaN NaN 2017-02-23 01:22:14 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo fully pupared for a shower. H*c... NaN NaN NaN https://twitter.com/dog_rates/status/834574053... 13 10 None doggo None None None
319 834477809192075265 NaN NaN 2017-02-22 18:59:48 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Leo. He was a skater pu... 8.295020e+17 4.196984e+09 2017-02-09 01:27:41 +0000 https://twitter.com/dog_rates/status/829501995... 12 10 Leo None None None None
320 834458053273591808 NaN NaN 2017-02-22 17:41:18 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chester (bottom) &amp; Harold (top). They... NaN NaN NaN https://twitter.com/dog_rates/status/834458053... 12 10 Chester None None None None
321 834209720923721728 NaN NaN 2017-02-22 01:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Wilson. He's aware that he has somethi... NaN NaN NaN https://twitter.com/dog_rates/status/834209720... 12 10 Wilson None None None None
322 834167344700198914 NaN NaN 2017-02-21 22:26:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Sunshine. She doesn't believe in perso... NaN NaN NaN https://twitter.com/dog_rates/status/834167344... 11 10 Sunshine None None None None
323 834089966724603904 NaN NaN 2017-02-21 17:18:39 +0000 <a href="http://twitter.com/download/iphone" r... DOGGO ON THE LOOSE I REPEAT DOGGO ON THE LOOSE... NaN NaN NaN https://twitter.com/stevekopack/status/8340866... 10 10 None doggo None None None
324 834086379323871233 NaN NaN 2017-02-21 17:04:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Lipton. He's a West Romanian Snuggle P... NaN NaN NaN https://twitter.com/dog_rates/status/834086379... 12 10 Lipton None None None None
325 833863086058651648 NaN NaN 2017-02-21 02:17:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. Hairbrushes are his favorite ... NaN NaN NaN https://twitter.com/dog_rates/status/833863086... 12 10 Bentley None None None None
326 833826103416520705 NaN NaN 2017-02-20 23:50:09 +0000 <a href="http://twitter.com/download/iphone" r... Meet Charlie. She asked u to change the channe... NaN NaN NaN https://twitter.com/dog_rates/status/833826103... 13 10 Charlie None None None None
327 833732339549220864 NaN NaN 2017-02-20 17:37:34 +0000 <a href="http://twitter.com/download/iphone" r... RT @rolltidered: This is Gabby. Now requests t... 8.324344e+17 4.466750e+07 2017-02-17 03:39:51 +0000 https://twitter.com/rolltidered/status/8324343... 12 10 Gabby None None None None
328 833722901757046785 NaN NaN 2017-02-20 17:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Bronte. She's fairly h*ckin aerodynami... NaN NaN NaN https://twitter.com/dog_rates/status/833722901... 13 10 Bronte None None None None
329 833479644947025920 NaN NaN 2017-02-20 00:53:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Poppy. She just arrived. 13/10 would s... NaN NaN NaN https://twitter.com/dog_rates/status/833479644... 13 10 Poppy None None None None
330 833124694597443584 NaN NaN 2017-02-19 01:23:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Gidget. She's a spy pupper. Stealthy a... NaN NaN NaN https://twitter.com/dog_rates/status/833124694... 12 10 Gidget None None pupper None
331 832998151111966721 NaN NaN 2017-02-18 17:00:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Rhino. He arrived at a shelter with an... NaN NaN NaN https://twitter.com/dog_rates/status/832998151... 13 10 Rhino doggo None None None
332 832769181346996225 NaN NaN 2017-02-18 01:50:19 +0000 <a href="http://twitter.com/download/iphone" r... RT @EmilieGambril: 12/10 h*cking excited about... 8.327664e+17 4.871977e+08 2017-02-18 01:39:12 +0000 https://twitter.com/EmilieGambril/status/83276... 12 10 None None None None None
333 832757312314028032 NaN NaN 2017-02-18 01:03:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Willow. She's the official strawberry ... NaN NaN NaN https://twitter.com/dog_rates/status/832757312... 13 10 Willow None None None None
334 832682457690300417 NaN NaN 2017-02-17 20:05:43 +0000 <a href="http://twitter.com/download/iphone" r... Prosperous good boy 13/10 socioeconomic af htt... NaN NaN NaN https://twitter.com/telegraph/status/832268302... 13 10 None None None None None
335 832645525019123713 NaN NaN 2017-02-17 17:38:57 +0000 <a href="http://twitter.com" rel="nofollow">Tw... There's going to be a dog terminal at JFK Airp... NaN NaN NaN http://us.blastingnews.com/news/2017/02/jfk-an... 10 10 not None None None None
336 832636094638288896 NaN NaN 2017-02-17 17:01:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Orion. He just got back from the denti... NaN NaN NaN https://twitter.com/dog_rates/status/832636094... 12 10 Orion None None None None
337 832397543355072512 NaN NaN 2017-02-17 01:13:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Eevee. She wants to see how you're doi... NaN NaN NaN https://twitter.com/dog_rates/status/832397543... 12 10 Eevee None None None None
338 832369877331693569 NaN NaN 2017-02-16 23:23:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He fell asleep on a heating v... NaN NaN NaN https://twitter.com/dog_rates/status/832369877... 11 10 Charlie None None None None
339 832273440279240704 NaN NaN 2017-02-16 17:00:25 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Smiley. He's a blind therapy dogg... NaN NaN NaN https://twitter.com/dog_rates/status/832273440... 14 10 Smiley doggo None None None
340 832215909146226688 NaN NaN 2017-02-16 13:11:49 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Logan, the Chow who liv... 7.867091e+17 4.196984e+09 2016-10-13 23:23:56 +0000 https://twitter.com/dog_rates/status/786709082... 75 10 Logan None None None None
341 832215726631055365 NaN NaN 2017-02-16 13:11:05 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Moreton. He's the Good ... 7.932865e+17 4.196984e+09 2016-11-01 03:00:09 +0000 https://twitter.com/dog_rates/status/793286476... 13 10 Moreton None None None None
342 832088576586297345 8.320875e+17 3.058208e+07 2017-02-16 04:45:50 +0000 <a href="http://twitter.com/download/iphone" r... @docmisterio account started on 11/15/15 NaN NaN NaN NaN 11 15 None None None None None
343 832040443403784192 NaN NaN 2017-02-16 01:34:34 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Klein. These pics were ... 7.699404e+17 4.196984e+09 2016-08-28 16:51:16 +0000 https://twitter.com/dog_rates/status/769940425... 12 10 Klein None None None None
344 832032802820481025 NaN NaN 2017-02-16 01:04:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Miguel. He was the only remaining dogg... NaN NaN NaN https://www.petfinder.com/petdetail/34918210,h... 12 10 Miguel doggo None None None
345 831939777352105988 NaN NaN 2017-02-15 18:54:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Emanuel. He's a h*ckin rare doggo. Dwe... NaN NaN NaN https://twitter.com/dog_rates/status/831939777... 12 10 Emanuel doggo None None None
346 831926988323639298 8.319030e+17 2.068372e+07 2017-02-15 18:03:45 +0000 <a href="http://twitter.com/download/iphone" r... @UNC can confirm 12/10 NaN NaN NaN NaN 12 10 None None None None None
347 831911600680497154 NaN NaN 2017-02-15 17:02:36 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kuyu. He was trapped in a well for 10 day... NaN NaN NaN https://twitter.com/dog_rates/status/831911600... 14 10 Kuyu None None None None
348 831670449226514432 NaN NaN 2017-02-15 01:04:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She has a heart on her butt. 13... NaN NaN NaN https://twitter.com/dog_rates/status/831670449... 13 10 Daisy None None None None
349 831650051525054464 NaN NaN 2017-02-14 23:43:18 +0000 <a href="http://twitter.com/download/iphone" r... I usually only share these on Friday's, but th... NaN NaN NaN http://www.gofundme.com/bluethewhitehusky,http... 13 10 None None None None None
350 831552930092285952 NaN NaN 2017-02-14 17:17:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Dutch. He dressed up as his favorite e... NaN NaN NaN https://twitter.com/dog_rates/status/831552930... 13 10 Dutch None None None None
351 831322785565769729 NaN NaN 2017-02-14 02:02:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Pete. He has no eyes. Needs a guide do... NaN NaN NaN https://twitter.com/dog_rates/status/831322785... 12 10 Pete doggo None None None
352 831315979191906304 NaN NaN 2017-02-14 01:35:49 +0000 <a href="http://twitter.com" rel="nofollow">Tw... I couldn't make it to the #WKCDogShow BUT I ha... NaN NaN NaN https://twitter.com/dog_rates/status/831315979... 13 10 None None None pupper None
353 831309418084069378 NaN NaN 2017-02-14 01:09:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Scooter and his son Montoya. Scooter ... NaN NaN NaN https://twitter.com/dog_rates/status/831309418... 12 10 Scooter None None None None
354 831262627380748289 NaN NaN 2017-02-13 22:03:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He's feeling h*ckin festive an... NaN NaN NaN https://twitter.com/dog_rates/status/831262627... 12 10 Tucker None None None None
355 830956169170665475 NaN NaN 2017-02-13 01:46:03 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Reggie. He hates puns. 12/10 ligh... NaN NaN NaN https://twitter.com/dog_rates/status/830956169... 12 10 Reggie None None None None
356 830583320585068544 NaN NaN 2017-02-12 01:04:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Lilly. She just parallel barked. Kindl... NaN NaN NaN https://twitter.com/dog_rates/status/830583320... 13 10 Lilly None None None None
357 830173239259324417 NaN NaN 2017-02-10 21:54:58 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Kyro. He's a Stratocumu... 8.092201e+17 4.196984e+09 2016-12-15 02:14:29 +0000 https://twitter.com/dog_rates/status/809220051... 12 10 Kyro None None None None
358 830097400375152640 NaN NaN 2017-02-10 16:53:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Samson. He's absolute fluffy perfection. ... NaN NaN NaN https://www.gofundme.com/sick-baby-samson,http... 13 10 Samson None None None None
359 829878982036299777 NaN NaN 2017-02-10 02:25:42 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Loki. He smiles like El... 8.269587e+17 4.196984e+09 2017-02-02 01:01:21 +0000 https://twitter.com/dog_rates/status/826958653... 12 10 Loki doggo None None None
360 829861396166877184 NaN NaN 2017-02-10 01:15:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Mia. She already knows she's a good do... NaN NaN NaN https://twitter.com/dog_rates/status/829861396... 12 10 Mia None None None None
361 829501995190984704 NaN NaN 2017-02-09 01:27:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He was a skater pup. She said see... NaN NaN NaN https://twitter.com/dog_rates/status/829501995... 12 10 Leo None None None None
362 829449946868879360 NaN NaN 2017-02-08 22:00:52 +0000 <a href="http://twitter.com/download/iphone" r... Here's a stressed doggo. Had a long day. Many ... NaN NaN NaN https://twitter.com/dog_rates/status/829449946... 11 10 None doggo None None None
363 829374341691346946 NaN NaN 2017-02-08 17:00:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Astrid. She's a guide doggo in trainin... NaN NaN NaN https://twitter.com/dog_rates/status/829374341... 13 10 Astrid doggo None None None
364 829141528400556032 NaN NaN 2017-02-08 01:35:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Malcolm. He goes from sneaky tongue sl... NaN NaN NaN https://twitter.com/dog_rates/status/829141528... 12 10 Malcolm None None None None
365 829011960981237760 NaN NaN 2017-02-07 17:00:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Dexter. He was reunited with his mom y... NaN NaN NaN https://twitter.com/dog_rates/status/829011960... 13 10 Dexter None None None None
366 828801551087042563 NaN NaN 2017-02-07 03:04:22 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Gus. He likes to be clo... 8.102541e+17 4.196984e+09 2016-12-17 22:43:27 +0000 https://twitter.com/dog_rates/status/810254108... 12 10 Gus None None None None
367 828770345708580865 NaN NaN 2017-02-07 01:00:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's your Lyft for tonight. Kin... NaN NaN NaN https://twitter.com/dog_rates/status/828770345... 13 10 Alfie None None None None
368 828708714936930305 NaN NaN 2017-02-06 20:55:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Fiona. She's an exotic dog. Seems rath... NaN NaN NaN https://twitter.com/dog_rates/status/828708714... 10 10 Fiona None None None None
369 828650029636317184 NaN NaN 2017-02-06 17:02:17 +0000 <a href="http://twitter.com/download/iphone" r... Occasionally, we're sent fantastic stories. Th... NaN NaN NaN https://twitter.com/dog_rates/status/828650029... 14 10 one None None None None
370 828409743546925057 NaN NaN 2017-02-06 01:07:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Mutt Ryan. He's quite confident at the... NaN NaN NaN https://twitter.com/dog_rates/status/828409743... 12 10 Mutt None None None None
371 828408677031882754 NaN NaN 2017-02-06 01:03:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Bear. He went outside to play in the s... NaN NaN NaN https://twitter.com/dog_rates/status/828408677... 12 10 Bear None None None None
372 828381636999917570 NaN NaN 2017-02-05 23:15:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Doobert. He's a deaf doggo. Didn't stop h... NaN NaN NaN https://twitter.com/dog_rates/status/828381636... 14 10 Doobert doggo None None None
373 828376505180889089 NaN NaN 2017-02-05 22:55:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Beebop. Her name means "Good Dog" in r... NaN NaN NaN https://twitter.com/dog_rates/status/828376505... 13 10 Beebop None None None None
374 828372645993398273 NaN NaN 2017-02-05 22:40:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Alexander Hamilpup. He was one of the ... NaN NaN NaN https://twitter.com/dog_rates/status/828372645... 12 10 Alexander None None None None
375 828361771580813312 NaN NaN 2017-02-05 21:56:51 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Beebop and Doobert should start a band 12/10 w... NaN NaN NaN NaN 12 10 None None None None None
376 828046555563323392 NaN NaN 2017-02-05 01:04:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Sailer. He waits on the roof for his o... NaN NaN NaN https://twitter.com/dog_rates/status/828046555... 13 10 Sailer None None None None
377 828011680017821696 NaN NaN 2017-02-04 22:45:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Brutus and Jersey. They think the... NaN NaN NaN https://twitter.com/dog_rates/status/828011680... 11 10 Brutus None None None None
378 827933404142436356 NaN NaN 2017-02-04 17:34:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Kona. Yesterday she stopped by the dep... NaN NaN NaN https://twitter.com/dog_rates/status/827933404... 12 10 Kona None None pupper None
379 827653905312006145 NaN NaN 2017-02-03 23:04:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Boots. She doesn't know what to do wit... NaN NaN NaN https://twitter.com/dog_rates/status/827653905... 12 10 Boots None None None None
380 827600520311402496 NaN NaN 2017-02-03 19:31:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Tucker. It's his birthday. He's pupset wi... NaN NaN NaN https://twitter.com/dog_rates/status/827600520... 13 10 Tucker None None None None
381 827324948884643840 NaN NaN 2017-02-03 01:16:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphie. He's being treated for an ove... NaN NaN NaN https://twitter.com/dog_rates/status/827324948... 12 10 Ralphie None None None None
382 827228250799742977 NaN NaN 2017-02-02 18:52:38 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Phil. He's an important... 6.946697e+17 4.196984e+09 2016-02-02 23:52:22 +0000 https://twitter.com/dog_rates/status/694669722... 12 10 Phil None None None None
383 827199976799354881 NaN NaN 2017-02-02 17:00:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He wins every game of chess h... NaN NaN NaN https://twitter.com/dog_rates/status/827199976... 13 10 Charlie None None None None
384 826958653328592898 NaN NaN 2017-02-02 01:01:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Loki. He smiles like Elvis. Ain't noth... NaN NaN NaN https://twitter.com/dog_rates/status/826958653... 12 10 Loki doggo None None None
385 826848821049180160 NaN NaN 2017-02-01 17:44:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Cupid. He was found in the trash. Now ... NaN NaN NaN https://twitter.com/dog_rates/status/826848821... 13 10 Cupid doggo None None None
386 826615380357632002 NaN NaN 2017-02-01 02:17:19 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Please only send in dogs. We on... 8.099208e+17 4.196984e+09 2016-12-17 00:38:52 +0000 https://twitter.com/dog_rates/status/809920764... 10 10 None None None None None
387 826598799820865537 8.265984e+17 4.196984e+09 2017-02-01 01:11:25 +0000 <a href="http://twitter.com/download/iphone" r... I was going to do 007/10, but the joke wasn't ... NaN NaN NaN NaN 7 10 None None None None None
388 826598365270007810 NaN NaN 2017-02-01 01:09:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Pawnd... James Pawnd. He's suave af. 1... NaN NaN NaN https://twitter.com/dog_rates/status/826598365... 13 10 Pawnd None None None None
389 826476773533745153 NaN NaN 2017-01-31 17:06:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Pilot. He has mastered the synchronize... NaN NaN NaN https://twitter.com/dog_rates/status/826476773... 12 10 Pilot doggo None None None
390 826240494070030336 NaN NaN 2017-01-31 01:27:39 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in any mo... NaN NaN NaN https://twitter.com/dog_rates/status/826240494... 11 10 None None None None None
391 826204788643753985 NaN NaN 2017-01-30 23:05:46 +0000 <a href="http://twitter.com/download/iphone" r... Here's a little more info on Dew, your favorit... NaN NaN NaN http://us.blastingnews.com/news/2017/01/kentuc... 13 10 None doggo None None None
392 826115272272650244 NaN NaN 2017-01-30 17:10:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Ike. He's demonstrating the pupmost re... NaN NaN NaN https://twitter.com/dog_rates/status/826115272... 13 10 Ike None None None None
393 825876512159186944 NaN NaN 2017-01-30 01:21:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Mo. No one will push him around in the... NaN NaN NaN https://twitter.com/dog_rates/status/825876512... 11 10 Mo None None None None
394 825829644528148480 NaN NaN 2017-01-29 22:15:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Toby. He just found out you only prete... NaN NaN NaN https://twitter.com/dog_rates/status/825829644... 12 10 Toby None None None None
395 825535076884762624 NaN NaN 2017-01-29 02:44:34 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very loving and accepting puppo. Appe... NaN NaN NaN https://twitter.com/dog_rates/status/825535076... 14 10 None None None None puppo
396 825147591692263424 NaN NaN 2017-01-28 01:04:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Sweet Pea. She hides in shoe boxes and... NaN NaN NaN https://twitter.com/dog_rates/status/825147591... 13 10 Sweet None None None None
397 825120256414846976 NaN NaN 2017-01-27 23:16:13 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Say hello to Pablo. He's one go... 8.250266e+17 4.196984e+09 2017-01-27 17:04:02 +0000 https://www.gofundme.com/my-puppys-double-cata... 12 10 Pablo None None None puppo
398 825026590719483904 NaN NaN 2017-01-27 17:04:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Pablo. He's one gorgeous puppo. A... NaN NaN NaN https://www.gofundme.com/my-puppys-double-cata... 12 10 Pablo None None None puppo
399 824796380199809024 NaN NaN 2017-01-27 01:49:15 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bailey. She loves going... 7.950767e+17 4.196984e+09 2016-11-06 01:33:58 +0000 https://twitter.com/dog_rates/status/795076730... 11 10 Bailey None None None None
400 824775126675836928 NaN NaN 2017-01-27 00:24:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Scooter. His lack of opposable thumbs ... NaN NaN NaN https://twitter.com/dog_rates/status/824775126... 12 10 Scooter None None None None
401 824663926340194305 NaN NaN 2017-01-26 17:02:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Wilson. Named after the volleyball. He... NaN NaN NaN https://twitter.com/dog_rates/status/824663926... 13 10 Wilson None None None None
402 824325613288833024 NaN NaN 2017-01-25 18:38:36 +0000 <a href="http://twitter.com/download/iphone" r... Retweet the h*ck out of this 13/10 pupper #Bel... NaN NaN NaN https://twitter.com/dog_rates/status/824325613... 13 10 None None None pupper None
403 824297048279236611 NaN NaN 2017-01-25 16:45:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Nala. She got in trouble. One h*ck of ... NaN NaN NaN https://twitter.com/dog_rates/status/824297048... 11 10 Nala None None None None
404 824025158776213504 NaN NaN 2017-01-24 22:44:42 +0000 <a href="http://twitter.com/download/iphone" r... "I wish we were dogs" 14/10 for @BadlandsNPS h... NaN NaN NaN https://twitter.com/badlandsnps/status/8239662... 14 10 None None None None None
405 823939628516474880 NaN NaN 2017-01-24 17:04:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Cash. He's officially given pup on tod... NaN NaN NaN https://twitter.com/dog_rates/status/823939628... 12 10 Cash None None None None
406 823719002937630720 NaN NaN 2017-01-24 02:28:08 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Balto. He's very conten... 7.840579e+17 4.196984e+09 2016-10-06 15:49:14 +0000 https://vine.co/v/5gKxeUpuKEr,https://vine.co/... 12 10 Balto None None None None
407 823699002998870016 NaN NaN 2017-01-24 01:08:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Winston. The goggles make him a superh... NaN NaN NaN https://twitter.com/dog_rates/status/823699002... 12 10 Winston None None None None
408 823581115634085888 NaN NaN 2017-01-23 17:20:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Crawford. He's quite h*ckin good at th... NaN NaN NaN https://twitter.com/dog_rates/status/823581115... 11 10 Crawford None None None None
409 823333489516937216 8.233264e+17 1.582854e+09 2017-01-23 00:56:15 +0000 <a href="http://twitter.com/download/iphone" r... @HistoryInPics 13/10 NaN NaN NaN NaN 13 10 None None None None None
410 823322678127919110 NaN NaN 2017-01-23 00:13:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. He's got the fastest paws in th... NaN NaN NaN https://twitter.com/dog_rates/status/823322678... 11 10 Wyatt None None None None
411 823269594223824897 NaN NaN 2017-01-22 20:42:21 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We only rate dogs. Please don't... 8.222448e+17 4.196984e+09 2017-01-20 00:50:15 +0000 https://twitter.com/dog_rates/status/822244816... 11 10 None None None None None
412 822975315408461824 NaN NaN 2017-01-22 01:12:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Albus. He's soaked as h*ck. Seems to h... NaN NaN NaN https://twitter.com/dog_rates/status/822975315... 12 10 Albus None None None None
413 822872901745569793 NaN NaN 2017-01-21 18:26:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a super supportive puppo participating ... NaN NaN NaN https://twitter.com/dog_rates/status/822872901... 13 10 None None None None puppo
414 822859134160621569 NaN NaN 2017-01-21 17:31:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Hobbes. He was told he was going to th... NaN NaN NaN https://twitter.com/dog_rates/status/822859134... 12 10 Hobbes None None None None
415 822647212903690241 NaN NaN 2017-01-21 03:29:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Paisley. She really wan... 8.224891e+17 4.196984e+09 2017-01-20 17:00:46 +0000 https://twitter.com/dog_rates/status/822489057... 13 10 Paisley None None None None
416 822610361945911296 NaN NaN 2017-01-21 01:02:48 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in non-canines like this V... NaN NaN NaN https://twitter.com/dog_rates/status/822610361... 12 10 None None None None None
417 822489057087389700 NaN NaN 2017-01-20 17:00:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Paisley. She really wanted to be presi... NaN NaN NaN https://twitter.com/dog_rates/status/822489057... 13 10 Paisley None None None None
418 822462944365645825 NaN NaN 2017-01-20 15:17:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Gabe. He was the unequivocal embodimen... NaN NaN NaN https://twitter.com/dog_rates/status/822462944... 14 10 Gabe None None pupper None
419 822244816520155136 NaN NaN 2017-01-20 00:50:15 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send pics of m... NaN NaN NaN https://twitter.com/dog_rates/status/822244816... 11 10 None None None None None
420 822163064745328640 NaN NaN 2017-01-19 19:25:24 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Mattie. She's extremely... 7.862340e+17 4.196984e+09 2016-10-12 15:55:59 +0000 https://twitter.com/dog_rates/status/786233965... 11 10 Mattie None None None None
421 821886076407029760 NaN NaN 2017-01-19 01:04:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimison. He was just called a good boy... NaN NaN NaN https://twitter.com/dog_rates/status/821886076... 13 10 Jimison None None None None
422 821813639212650496 NaN NaN 2017-01-18 20:16:54 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Hercules. He can have what... 7.806013e+17 4.196984e+09 2016-09-27 02:53:48 +0000 https://twitter.com/dog_rates/status/780601303... 12 10 Hercules None None None None
423 821765923262631936 NaN NaN 2017-01-18 17:07:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Duchess. She uses dark doggo forces to... NaN NaN NaN https://twitter.com/dog_rates/status/821765923... 13 10 Duchess doggo None None None
424 821522889702862852 NaN NaN 2017-01-18 01:01:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Harlso. He has a really good idea but ... NaN NaN NaN https://twitter.com/dog_rates/status/821522889... 13 10 Harlso None None None None
425 821421320206483457 NaN NaN 2017-01-17 18:17:58 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Sampson. He just gradua... 7.823059e+17 4.196984e+09 2016-10-01 19:47:08 +0000 https://twitter.com/dog_rates/status/782305867... 12 10 Sampson doggo None None None
426 821407182352777218 NaN NaN 2017-01-17 17:21:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Sundance. He's a doggo drummer. Even s... NaN NaN NaN https://twitter.com/dog_rates/status/821407182... 14 10 Sundance doggo None None None
427 821153421864615936 8.211526e+17 1.132119e+08 2017-01-17 00:33:26 +0000 <a href="http://twitter.com/download/iphone" r... @imgur for a polar bear tho I'd say 13/10 is a... NaN NaN NaN NaN 13 10 None None None None None
428 821149554670182400 NaN NaN 2017-01-17 00:18:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Luca. He got caught howling. H*ckin em... NaN NaN NaN https://twitter.com/dog_rates/status/821149554... 12 10 Luca None None None None
429 821107785811234820 NaN NaN 2017-01-16 21:32:06 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo who looks like he's about to gi... NaN NaN NaN https://twitter.com/dog_rates/status/821107785... 11 10 None doggo None None None
430 821044531881721856 NaN NaN 2017-01-16 17:20:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Flash. He went way too hard celebratin... NaN NaN NaN https://twitter.com/dog_rates/status/821044531... 12 10 Flash None None None None
431 820837357901512704 NaN NaN 2017-01-16 03:37:31 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Finn. He's wondering if... 8.192277e+17 4.196984e+09 2017-01-11 17:01:16 +0000 https://twitter.com/dog_rates/status/819227688... 12 10 Finn None None None None
432 820749716845686786 NaN NaN 2017-01-15 21:49:15 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sunny. He can take down a polar bear in o... NaN NaN NaN https://twitter.com/dog_rates/status/820749716... 13 10 Sunny None None None None
433 820690176645140481 NaN NaN 2017-01-15 17:52:40 +0000 <a href="http://twitter.com/download/iphone" r... The floofs have been released I repeat the flo... NaN NaN NaN https://twitter.com/dog_rates/status/820690176... 84 70 None None None None None
434 820494788566847489 NaN NaN 2017-01-15 04:56:16 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We are proud to support @LoveYo... 8.203146e+17 4.196984e+09 2017-01-14 17:00:24 +0000 https://www.loveyourmelon.com/pages/ourstory,h... 14 10 None None None None None
435 820446719150292993 NaN NaN 2017-01-15 01:45:15 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Peaches. She's the ulti... 8.001414e+17 4.196984e+09 2016-11-20 00:59:15 +0000 https://twitter.com/dog_rates/status/800141422... 13 10 Peaches None None None None
436 820314633777061888 NaN NaN 2017-01-14 17:00:24 +0000 <a href="http://twitter.com/download/iphone" r... We are proud to support @LoveYourMelon on thei... NaN NaN NaN https://www.loveyourmelon.com/pages/ourstory,h... 14 10 None None None None None
437 820078625395449857 NaN NaN 2017-01-14 01:22:35 +0000 <a href="http://twitter.com/download/iphone" r... I've never wanted to go to a camp more in my e... NaN NaN NaN https://twitter.com/dog_rates/status/820078625... 12 10 None None None None None
438 820013781606658049 NaN NaN 2017-01-13 21:04:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Oliver. He has dreams o... 8.199522e+17 4.196984e+09 2017-01-13 17:00:21 +0000 https://www.gofundme.com/servicedogoliver,http... 13 10 Oliver None None None puppo
439 819952236453363712 NaN NaN 2017-01-13 17:00:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. He has dreams of being a servi... NaN NaN NaN https://www.gofundme.com/servicedogoliver,http... 13 10 Oliver None None None puppo
440 819924195358416896 NaN NaN 2017-01-13 15:08:56 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a doggo who has messed up. He was... NaN NaN NaN https://twitter.com/dog_rates/status/819924195... 11 10 None doggo None None None
441 819711362133872643 NaN NaN 2017-01-13 01:03:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Howie. He just bloomed. 11/10 revoluti... NaN NaN NaN https://twitter.com/dog_rates/status/819711362... 11 10 Howie None None None None
442 819588359383371776 NaN NaN 2017-01-12 16:54:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Jazzy. She just found out that sandwic... NaN NaN NaN https://twitter.com/dog_rates/status/819588359... 13 10 Jazzy None None None None
443 819347104292290561 NaN NaN 2017-01-12 00:55:47 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Anna and Elsa. They fall asleep i... NaN NaN NaN https://twitter.com/dog_rates/status/819347104... 12 10 Anna None None None None
444 819238181065359361 NaN NaN 2017-01-11 17:42:57 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Some happy pupper news to share. 10/10 for eve... NaN NaN NaN http://us.blastingnews.com/news/2017/01/200-do... 10 10 None None None pupper None
445 819227688460238848 NaN NaN 2017-01-11 17:01:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Finn. He's wondering if you come here ... NaN NaN NaN https://twitter.com/dog_rates/status/819227688... 12 10 Finn None None None None
446 819015337530290176 NaN NaN 2017-01-11 02:57:27 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bo. He was a very good ... 8.190048e+17 4.196984e+09 2017-01-11 02:15:36 +0000 https://twitter.com/dog_rates/status/819004803... 14 10 Bo doggo None None None
447 819015331746349057 NaN NaN 2017-01-11 02:57:26 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Sunny. She was also a v... 8.190064e+17 4.196984e+09 2017-01-11 02:21:57 +0000 https://twitter.com/dog_rates/status/819006400... 14 10 Sunny doggo None None None
448 819006400881917954 NaN NaN 2017-01-11 02:21:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Sunny. She was also a very good First ... NaN NaN NaN https://twitter.com/dog_rates/status/819006400... 14 10 Sunny doggo None None None
449 819004803107983360 NaN NaN 2017-01-11 02:15:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Bo. He was a very good First Doggo. 14... NaN NaN NaN https://twitter.com/dog_rates/status/819004803... 14 10 Bo doggo None None None
450 818646164899774465 NaN NaN 2017-01-10 02:30:30 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Seamus. He's very bad a... 8.083449e+17 4.196984e+09 2016-12-12 16:16:49 +0000 https://vine.co/v/5QWd3LZqXxd,https://vine.co/... 11 10 Seamus None None None None
451 818627210458333184 NaN NaN 2017-01-10 01:15:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Wafer. He represents every fiber of my be... NaN NaN NaN https://twitter.com/dog_rates/status/818627210... 13 10 Wafer None None None None
452 818614493328580609 NaN NaN 2017-01-10 00:24:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Bear. He's a passionate believer of th... NaN NaN NaN https://twitter.com/dog_rates/status/818614493... 12 10 Bear None None None None
453 818588835076603904 NaN NaN 2017-01-09 22:42:41 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Chelsea. She forgot how... 7.735476e+17 4.196984e+09 2016-09-07 15:44:53 +0000 https://twitter.com/dog_rates/status/773547596... 11 10 Chelsea None None pupper None
454 818536468981415936 NaN NaN 2017-01-09 19:14:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Tom. He's a silly dog. Known for his u... NaN NaN NaN https://twitter.com/dog_rates/status/818536468... 11 10 Tom None None None None
455 818307523543449600 NaN NaN 2017-01-09 04:04:51 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Moose. He doesn't want his... 8.164506e+17 4.196984e+09 2017-01-04 01:05:59 +0000 https://twitter.com/dog_rates/status/816450570... 13 10 Moose None None None None
456 818259473185828864 NaN NaN 2017-01-09 00:53:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Florence. He saw the same snap you sen... NaN NaN NaN https://twitter.com/dog_rates/status/818259473... 12 10 Florence None None None None
457 818145370475810820 NaN NaN 2017-01-08 17:20:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Autumn. Her favorite toy is a cheesebu... NaN NaN NaN https://twitter.com/dog_rates/status/818145370... 11 10 Autumn None None None None
458 817908911860748288 NaN NaN 2017-01-08 01:40:55 +0000 <a href="http://twitter.com/download/iphone" r... Looks like he went cross-eyed trying way too h... NaN NaN NaN https://twitter.com/micahgrimes/status/8179020... 12 10 None None None None None
459 817827839487737858 NaN NaN 2017-01-07 20:18:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Buddy. He ran into a glass door once. ... NaN NaN NaN https://twitter.com/dog_rates/status/817827839... 13 10 Buddy None None None None
460 817777686764523521 NaN NaN 2017-01-07 16:59:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Dido. She's playing the lead role in "... NaN NaN NaN https://twitter.com/dog_rates/status/817777686... 13 10 Dido doggo None pupper None
461 817536400337801217 NaN NaN 2017-01-07 01:00:41 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Eugene &amp; Patti Melt. No matte... NaN NaN NaN https://twitter.com/dog_rates/status/817536400... 12 10 Eugene None None None None
462 817502432452313088 NaN NaN 2017-01-06 22:45:43 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Herschel. He's slightly bi... 6.924173e+17 4.196984e+09 2016-01-27 18:42:06 +0000 https://twitter.com/dog_rates/status/692417313... 7 10 Herschel None None pupper None
463 817423860136083457 NaN NaN 2017-01-06 17:33:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Ken. His cheeks are magic. 13/10 (IG: ... NaN NaN NaN https://twitter.com/dog_rates/status/817423860... 13 10 Ken None None None None
464 817415592588222464 NaN NaN 2017-01-06 17:00:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Strudel. He's rather h*ckin pupset that y... NaN NaN NaN https://www.gofundme.com/help-strudel-walk-aga... 11 10 Strudel None None None None
465 817181837579653120 NaN NaN 2017-01-06 01:31:47 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Here's a pupper with squeaky hi... 8.159661e+17 4.196984e+09 2017-01-02 17:00:46 +0000 https://twitter.com/dog_rates/status/815966073... 13 10 None None None pupper None
466 817171292965273600 NaN NaN 2017-01-06 00:49:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Tebow. He kindly requests that you put... NaN NaN NaN https://twitter.com/dog_rates/status/817171292... 13 10 Tebow None None None None
467 817120970343411712 NaN NaN 2017-01-05 21:29:55 +0000 <a href="http://twitter.com/download/iphone" r... Name a more iconic quartet... I'll wait. 13/10... NaN NaN NaN https://twitter.com/dog_rates/status/817120970... 13 10 None None None None None
468 817056546584727552 NaN NaN 2017-01-05 17:13:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Chloe. She fell asleep at the wheel. A... NaN NaN NaN https://twitter.com/dog_rates/status/817056546... 11 10 Chloe None None None None
469 816829038950027264 NaN NaN 2017-01-05 02:09:53 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Betty. She's assisting ... 7.909461e+17 4.196984e+09 2016-10-25 16:00:09 +0000 https://twitter.com/dog_rates/status/790946055... 12 10 Betty None None None puppo
470 816816676327063552 NaN NaN 2017-01-05 01:20:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Timber. He misses Christmas. Specifica... NaN NaN NaN https://twitter.com/dog_rates/status/816816676... 12 10 Timber None None None None
471 816697700272001025 NaN NaN 2017-01-04 17:27:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Binky. She appears to be rather h*ckin... NaN NaN NaN https://twitter.com/dog_rates/status/816697700... 12 10 Binky None None None None
472 816450570814898180 NaN NaN 2017-01-04 01:05:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Moose. He doesn't want his friend to go b... NaN NaN NaN https://twitter.com/dog_rates/status/816450570... 13 10 Moose None None None None
473 816336735214911488 NaN NaN 2017-01-03 17:33:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Dudley. He found a flower and now he's... NaN NaN NaN https://twitter.com/dog_rates/status/816336735... 11 10 Dudley None None None None
474 816091915477250048 NaN NaN 2017-01-03 01:20:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Comet. He's a Wild Estonian Poofer. Su... NaN NaN NaN https://twitter.com/dog_rates/status/816091915... 12 10 Comet None None None None
475 816062466425819140 NaN NaN 2017-01-02 23:23:48 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Jack. He's one of the rare... 8.159907e+17 4.196984e+09 2017-01-02 18:38:42 +0000 https://www.gofundme.com/surgeryforjacktheminp... 11 10 Jack None None None None
476 816014286006976512 NaN NaN 2017-01-02 20:12:21 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Larry. He has no self c... 7.320056e+17 4.196984e+09 2016-05-16 00:31:53 +0000 https://twitter.com/dog_rates/status/732005617... 11 10 Larry None None None None
477 815990720817401858 NaN NaN 2017-01-02 18:38:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jack. He's one of the rare doggos that do... NaN NaN NaN https://www.gofundme.com/surgeryforjacktheminp... 11 10 Jack None None None None
478 815966073409433600 NaN NaN 2017-01-02 17:00:46 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper with squeaky hiccups. Please e... NaN NaN NaN https://twitter.com/dog_rates/status/815966073... 13 10 None None None pupper None
479 815745968457060357 NaN NaN 2017-01-02 02:26:09 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Say hello to Levi. He's a Madag... 7.914070e+17 4.196984e+09 2016-10-26 22:31:36 +0000 https://twitter.com/dog_rates/status/791406955... 12 10 Levi None None None None
480 815736392542261248 NaN NaN 2017-01-02 01:48:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Akumi. It's his birthday. He received ... NaN NaN NaN https://twitter.com/dog_rates/status/815736392... 11 10 Akumi None None None None
481 815639385530101762 NaN NaN 2017-01-01 19:22:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Titan. His nose is quite chilly. Reque... NaN NaN NaN https://twitter.com/dog_rates/status/815639385... 12 10 Titan None None None None
482 815390420867969024 NaN NaN 2017-01-01 02:53:20 +0000 <a href="http://twitter.com/download/iphone" r... Happy New Year from the squad! 13/10 for all h... NaN NaN NaN https://twitter.com/dog_rates/status/815390420... 13 10 None None None None None
483 814986499976527872 NaN NaN 2016-12-31 00:08:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. Someone attacked him with a sh... NaN NaN NaN https://twitter.com/dog_rates/status/814986499... 11 10 Cooper None None pupper None
484 814638523311648768 NaN NaN 2016-12-30 01:05:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Olivia. She's a passionate advocate of... NaN NaN NaN https://twitter.com/dog_rates/status/814638523... 12 10 Olivia None None None None
485 814578408554463233 NaN NaN 2016-12-29 21:06:41 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Beau &amp; Wilbur. Wilbur ... 6.981954e+17 4.196984e+09 2016-02-12 17:22:12 +0000 https://twitter.com/dog_rates/status/698195409... 9 10 Beau None None None None
486 814530161257443328 NaN NaN 2016-12-29 17:54:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Alf. Someone just rubbed a balloon on ... NaN NaN NaN https://twitter.com/dog_rates/status/814530161... 12 10 Alf None None None None
487 814153002265309185 NaN NaN 2016-12-28 16:56:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Oshie. He's ready to party. Bought tha... NaN NaN NaN https://twitter.com/dog_rates/status/814153002... 12 10 Oshie None None None None
488 813944609378369540 NaN NaN 2016-12-28 03:08:11 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bruce. He never backs d... 7.902771e+17 4.196984e+09 2016-10-23 19:42:02 +0000 https://twitter.com/dog_rates/status/790277117... 11 10 Bruce None None None None
489 813910438903693312 NaN NaN 2016-12-28 00:52:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Chubbs. He dug a hole and now he's stu... NaN NaN NaN https://twitter.com/dog_rates/status/813910438... 11 10 Chubbs doggo None None None
490 813812741911748608 NaN NaN 2016-12-27 18:24:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Gary, Carrie Fisher's dog. Idk what I can... NaN NaN NaN https://twitter.com/dog_rates/status/813812741... 14 10 Gary None None None None
491 813800681631023104 NaN NaN 2016-12-27 17:36:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Sky. She's learning how to roll her R'... NaN NaN NaN https://twitter.com/dog_rates/status/813800681... 12 10 Sky None None None None
492 813217897535406080 NaN NaN 2016-12-26 03:00:30 +0000 <a href="http://twitter.com/download/iphone" r... Here is Atlas. He went all out this year. 13/1... NaN NaN NaN https://twitter.com/dog_rates/status/813217897... 13 10 Atlas None None None None
493 813202720496779264 NaN NaN 2016-12-26 02:00:11 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo who has concluded that Christma... NaN NaN NaN https://twitter.com/dog_rates/status/813202720... 11 10 None doggo None None None
494 813187593374461952 NaN NaN 2016-12-26 01:00:05 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please don't send in other ... NaN NaN NaN https://twitter.com/dog_rates/status/813187593... 13 10 None None None None None
495 813172488309972993 NaN NaN 2016-12-26 00:00:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Eleanor. She winks like she knows many... NaN NaN NaN https://twitter.com/dog_rates/status/813172488... 12 10 Eleanor None None None None
496 813157409116065792 NaN NaN 2016-12-25 23:00:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Layla. It is her first Christmas. She ... NaN NaN NaN https://twitter.com/dog_rates/status/813157409... 12 10 Layla None None None None
497 813142292504645637 NaN NaN 2016-12-25 22:00:04 +0000 <a href="http://twitter.com/download/iphone" r... Everybody stop what you're doing and look at t... NaN NaN NaN https://twitter.com/dog_rates/status/813142292... 13 10 None None None None None
498 813130366689148928 8.131273e+17 4.196984e+09 2016-12-25 21:12:41 +0000 <a href="http://twitter.com/download/iphone" r... I've been informed by multiple sources that th... NaN NaN NaN NaN 12 10 None None None None None
499 813127251579564032 NaN NaN 2016-12-25 21:00:18 +0000 <a href="http://twitter.com/download/iphone" r... Here's an anonymous doggo that appears to be v... NaN NaN NaN https://twitter.com/dog_rates/status/813127251... 11 10 None doggo None None None
500 813112105746448384 NaN NaN 2016-12-25 20:00:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet Toby. He's pupset because his hat isn't b... NaN NaN NaN https://twitter.com/dog_rates/status/813112105... 12 10 Toby None None None None
501 813096984823349248 NaN NaN 2016-12-25 19:00:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Rocky. He got triple-doggo-dared. Stuc... NaN NaN NaN https://twitter.com/dog_rates/status/813096984... 11 10 Rocky doggo None None None
502 813081950185472002 NaN NaN 2016-12-25 18:00:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Baron. He's officially festive as h*ck... NaN NaN NaN https://twitter.com/dog_rates/status/813081950... 11 10 Baron None None None None
503 813066809284972545 NaN NaN 2016-12-25 17:00:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Tyr. He is disgusted by holiday traffi... NaN NaN NaN https://twitter.com/dog_rates/status/813066809... 12 10 Tyr None None None None
504 813051746834595840 NaN NaN 2016-12-25 16:00:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Bauer. He had nothing to do with the c... NaN NaN NaN https://twitter.com/dog_rates/status/813051746... 13 10 Bauer None None None None
505 812781120811126785 NaN NaN 2016-12-24 22:04:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Swagger. He's the Cleveland Browns amb... NaN NaN NaN https://twitter.com/dog_rates/status/812781120... 10 10 Swagger None None None None
506 812747805718642688 NaN NaN 2016-12-24 19:52:31 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Sammy. At first I was like... 6.800555e+17 4.196984e+09 2015-12-24 16:00:30 +0000 https://twitter.com/dog_rates/status/680055455... 10 10 Sammy None None None None
507 812709060537683968 NaN NaN 2016-12-24 17:18:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Brandi and Harley. They are practicing... NaN NaN NaN https://twitter.com/dog_rates/status/812709060... 12 10 Brandi None None None None
508 812503143955202048 NaN NaN 2016-12-24 03:40:19 +0000 <a href="http://twitter.com/download/iphone" r... I'm happy to inform you all that Jake is in ex... NaN NaN NaN https://m.facebook.com/story.php?story_fbid=18... 13 10 None None None None None
509 812466873996607488 NaN NaN 2016-12-24 01:16:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Mary. She's desperately trying to recr... NaN NaN NaN https://twitter.com/dog_rates/status/812466873... 12 10 Mary None None None None
510 812372279581671427 NaN NaN 2016-12-23 19:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Moe. He's a fetty woof. Got a cardboar... NaN NaN NaN https://twitter.com/dog_rates/status/812372279... 13 10 Moe None None None None
511 811985624773361665 NaN NaN 2016-12-22 17:23:53 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Ted. He accidentally opened the f... NaN NaN NaN https://twitter.com/dog_rates/status/811985624... 11 10 Ted None None None None
512 811744202451197953 NaN NaN 2016-12-22 01:24:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Halo. She likes watermelon. 13/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/811744202... 13 10 Halo None None None None
513 811647686436880384 8.116272e+17 4.196984e+09 2016-12-21 19:01:02 +0000 <a href="http://twitter.com/download/iphone" r... PUPDATE: I've been informed that Augie was act... NaN NaN NaN NaN 11 10 None None None None None
514 811627233043480576 NaN NaN 2016-12-21 17:39:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Augie. He's a savage. Doesn't give a h... NaN NaN NaN https://twitter.com/dog_rates/status/811627233... 10 10 Augie None None None None
515 811386762094317568 NaN NaN 2016-12-21 01:44:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Craig. That's actually a normal sized ... NaN NaN NaN https://twitter.com/dog_rates/status/811386762... 11 10 Craig None None pupper None
516 810984652412424192 NaN NaN 2016-12-19 23:06:23 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sam. She smiles 24/7 &amp; secretly aspir... NaN NaN NaN https://www.gofundme.com/sams-smile,https://tw... 24 7 Sam None None None None
517 810896069567610880 NaN NaN 2016-12-19 17:14:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Hunter. He just found out he needs bra... NaN NaN NaN https://twitter.com/dog_rates/status/810896069... 11 10 Hunter None None None None
518 810657578271330305 NaN NaN 2016-12-19 01:26:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Pavlov. His floatation device has fail... NaN NaN NaN https://twitter.com/dog_rates/status/810657578... 11 10 Pavlov None None None None
519 810284430598270976 NaN NaN 2016-12-18 00:43:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Phil. He's a father. A very good fathe... NaN NaN NaN https://twitter.com/dog_rates/status/810284430... 13 10 Phil None None None None
520 810254108431155201 NaN NaN 2016-12-17 22:43:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Gus. He likes to be close to you, whic... NaN NaN NaN https://twitter.com/dog_rates/status/810254108... 12 10 Gus None None None None
521 809920764300447744 NaN NaN 2016-12-17 00:38:52 +0000 <a href="http://twitter.com/download/iphone" r... Please only send in dogs. We only rate dogs, n... NaN NaN NaN https://twitter.com/dog_rates/status/809920764... 10 10 None None None None None
522 809808892968534016 NaN NaN 2016-12-16 17:14:20 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Maximus. His face is st... 7.939622e+17 4.196984e+09 2016-11-02 23:45:19 +0000 https://twitter.com/dog_rates/status/793962221... 12 10 Maximus None None None None
523 809448704142938112 NaN NaN 2016-12-15 17:23:04 +0000 <a href="http://twitter.com/download/iphone" r... I call this one "A Blep by the Sea" 12/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/809448704... 12 10 None None None None None
524 809220051211603969 NaN NaN 2016-12-15 02:14:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Kyro. He's a Stratocumulus Flop. Tongu... NaN NaN NaN https://twitter.com/dog_rates/status/809220051... 12 10 Kyro None None None None
525 809084759137812480 NaN NaN 2016-12-14 17:16:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Wallace. You said you brushed your tee... NaN NaN NaN https://twitter.com/dog_rates/status/809084759... 11 10 Wallace None None None None
526 808838249661788160 NaN NaN 2016-12-14 00:57:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Ito. He'll be your uber driver tonight... NaN NaN NaN https://twitter.com/dog_rates/status/808838249... 13 10 Ito None None None None
527 808733504066486276 NaN NaN 2016-12-13 18:01:07 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper in a onesie. Quite pupset abou... NaN NaN NaN https://twitter.com/dog_rates/status/808733504... 12 10 None None None pupper None
528 808501579447930884 NaN NaN 2016-12-13 02:39:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. He dug a hole and then sat in it... NaN NaN NaN https://twitter.com/dog_rates/status/808501579... 12 10 Koda None None None None
529 808344865868283904 NaN NaN 2016-12-12 16:16:49 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Seamus. He's very bad at entering pool... NaN NaN NaN https://vine.co/v/5QWd3LZqXxd 11 10 Seamus None None None None
530 808134635716833280 NaN NaN 2016-12-12 02:21:26 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Milo. I would do terrib... 8.011679e+17 4.196984e+09 2016-11-22 20:58:07 +0000 https://twitter.com/dog_rates/status/801167903... 13 10 Milo None None None None
531 808106460588765185 NaN NaN 2016-12-12 00:29:28 +0000 <a href="http://twitter.com/download/iphone" r... Here we have Burke (pupper) and Dexter (doggo)... NaN NaN NaN https://twitter.com/dog_rates/status/808106460... 12 10 None doggo None pupper None
532 808001312164028416 NaN NaN 2016-12-11 17:31:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. He likes to stick his tongue o... NaN NaN NaN https://twitter.com/dog_rates/status/808001312... 12 10 Cooper None None None None
533 807621403335917568 NaN NaN 2016-12-10 16:22:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ollie Vue. He was a 3 legged pupper on... NaN NaN NaN https://twitter.com/dog_rates/status/807621403... 14 10 Ollie None None pupper None
534 807106840509214720 NaN NaN 2016-12-09 06:17:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Stephan. He just wants to help. 13/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/807106840... 13 10 Stephan None None None None
535 807059379405148160 NaN NaN 2016-12-09 03:08:45 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Cali. She arrived preas... 7.829691e+17 4.196984e+09 2016-10-03 15:42:44 +0000 https://twitter.com/dog_rates/status/782969140... 12 10 Cali None None None None
536 807010152071229440 NaN NaN 2016-12-08 23:53:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Lennon. He's a Boopershnoop Pupperdoop... NaN NaN NaN https://twitter.com/dog_rates/status/807010152... 12 10 Lennon None None None None
537 806629075125202948 NaN NaN 2016-12-07 22:38:52 +0000 <a href="http://twitter.com/download/iphone" r... "Good afternoon class today we're going to lea... NaN NaN NaN https://twitter.com/dog_rates/status/806629075... 13 10 None None None None None
538 806620845233815552 NaN NaN 2016-12-07 22:06:10 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Idk why this keeps happening. W... 7.815247e+17 4.196984e+09 2016-09-29 16:03:01 +0000 https://twitter.com/dog_rates/status/781524693... 12 10 None None None None None
539 806576416489959424 NaN NaN 2016-12-07 19:09:37 +0000 <a href="http://twitter.com/download/iphone" r... Hooman catch successful. Massive hit by dog. F... NaN NaN NaN https://twitter.com/deadspin/status/8065709331... 13 10 None None None None None
540 806542213899489280 NaN NaN 2016-12-07 16:53:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Waffles. He's concerned that the dandr... NaN NaN NaN https://twitter.com/dog_rates/status/806542213... 11 10 Waffles None None None None
541 806242860592926720 NaN NaN 2016-12-06 21:04:11 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Dave. He's currently in... 7.833346e+17 4.196984e+09 2016-10-04 15:55:06 +0000 https://twitter.com/dog_rates/status/783334639... 12 10 Dave None None None None
542 806219024703037440 NaN NaN 2016-12-06 19:29:28 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please stop sending in non-... NaN NaN NaN https://twitter.com/dog_rates/status/806219024... 11 10 incredibly None None None None
543 805958939288408065 NaN NaN 2016-12-06 02:15:59 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Penny. She fought a bee... 7.827226e+17 4.196984e+09 2016-10-02 23:23:04 +0000 https://twitter.com/dog_rates/status/782722598... 10 10 Penny None None None None
544 805932879469572096 NaN NaN 2016-12-06 00:32:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Major. He put on a tie for his first r... NaN NaN NaN https://twitter.com/dog_rates/status/805932879... 12 10 Major None None None None
545 805826884734976000 NaN NaN 2016-12-05 17:31:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Duke. He is not a fan of the pupporazz... NaN NaN NaN https://twitter.com/dog_rates/status/805826884... 12 10 Duke None None None None
546 805823200554876929 NaN NaN 2016-12-05 17:16:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Reginald. He's one magi... 7.841832e+17 4.196984e+09 2016-10-07 00:06:50 +0000 https://vine.co/v/5ghHLBMMdlV,https://vine.co/... 12 10 Reginald None None None puppo
547 805520635690676224 NaN NaN 2016-12-04 21:14:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeke the Wonder Dog. He never let that... NaN NaN NaN https://twitter.com/dog_rates/status/805520635... 13 10 Zeke None None None None
548 805487436403003392 NaN NaN 2016-12-04 19:02:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sansa and Gary. They run along the fence ... NaN NaN NaN https://twitter.com/dog_rates/status/805487436... 12 10 Sansa None None None None
549 805207613751304193 NaN NaN 2016-12-04 00:30:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Shooter. He's doing quite the snowy zo... NaN NaN NaN https://twitter.com/dog_rates/status/805207613... 12 10 Shooter None None None None
550 804738756058218496 NaN NaN 2016-12-02 17:27:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Django. He accidentally opened the fro... NaN NaN NaN https://twitter.com/dog_rates/status/804738756... 12 10 Django None None None None
551 804475857670639616 NaN NaN 2016-12-02 00:02:45 +0000 <a href="http://twitter.com/download/iphone" r... HE'S TRYING TO BE HIS OWN PERSON LET HIM GO 13... NaN NaN NaN https://twitter.com/bvuepd/status/804417859124... 13 10 None None None None None
552 804413760345620481 NaN NaN 2016-12-01 19:56:00 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Rusty. He's going D1 fo... 7.848260e+17 4.196984e+09 2016-10-08 18:41:19 +0000 https://twitter.com/dog_rates/status/784826020... 13 10 Rusty None None None None
553 804026241225523202 NaN NaN 2016-11-30 18:16:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Bo. He's going to make me cry. 13/10 p... NaN NaN NaN https://twitter.com/dog_rates/status/804026241... 13 10 Bo None None None None
554 803773340896923648 NaN NaN 2016-11-30 01:31:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Diogi. He fell in the pool as soon as ... NaN NaN NaN https://twitter.com/dog_rates/status/803773340... 12 10 Diogi None None None puppo
555 803692223237865472 NaN NaN 2016-11-29 20:08:52 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I present to you... Dog Jesus. ... 6.914169e+17 4.196984e+09 2016-01-25 00:26:41 +0000 https://twitter.com/dog_rates/status/691416866... 13 10 None None None None None
556 803638050916102144 NaN NaN 2016-11-29 16:33:36 +0000 <a href="http://twitter.com/download/iphone" r... Pupper hath acquire enemy. 13/10 https://t.co/... NaN NaN NaN https://twitter.com/dog_rates/status/803638050... 13 10 None None None pupper None
557 803380650405482500 NaN NaN 2016-11-28 23:30:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sonny. He's an in-home movie critic. That... NaN NaN NaN https://twitter.com/dog_rates/status/803380650... 12 10 Sonny None None None None
558 803321560782307329 NaN NaN 2016-11-28 19:35:59 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Philbert. His toilet br... 7.677549e+17 4.196984e+09 2016-08-22 16:06:54 +0000 https://twitter.com/dog_rates/status/767754930... 11 10 Philbert None None None None
559 803276597545603072 NaN NaN 2016-11-28 16:37:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Winston. His selfie game is legendary.... NaN NaN NaN https://twitter.com/dog_rates/status/803276597... 11 10 Winston None None None None
560 802952499103731712 NaN NaN 2016-11-27 19:09:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Marley. She's having a ruff day. Prett... NaN NaN NaN https://twitter.com/dog_rates/status/802952499... 12 10 Marley None None None None
561 802624713319034886 NaN NaN 2016-11-26 21:26:58 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: "Yep... just as I suspected. Yo... 7.776842e+17 4.196984e+09 2016-09-19 01:42:24 +0000 https://twitter.com/dog_rates/status/777684233... 12 10 None None None None None
562 802600418706604034 NaN NaN 2016-11-26 19:50:26 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Bailey. She has mastered the head tilt... NaN NaN NaN https://vine.co/v/5FwUWjYaW0Y 11 10 Bailey None None None None
563 802572683846291456 NaN NaN 2016-11-26 18:00:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Winnie. She's h*ckin ferocious. Dandel... NaN NaN NaN https://twitter.com/dog_rates/status/802572683... 12 10 Winnie None None None None
564 802323869084381190 NaN NaN 2016-11-26 01:31:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Severus. He's here to fix your cable. ... NaN NaN NaN https://twitter.com/dog_rates/status/802323869... 13 10 Severus None None None None
565 802265048156610565 7.331095e+17 4.196984e+09 2016-11-25 21:37:47 +0000 <a href="http://twitter.com/download/iphone" r... Like doggo, like pupper version 2. Both 11/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/802265048... 11 10 None doggo None pupper None
566 802247111496568832 NaN NaN 2016-11-25 20:26:31 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Everybody drop what you're doin... 7.790561e+17 4.196984e+09 2016-09-22 20:33:42 +0000 https://twitter.com/dog_rates/status/779056095... 13 10 None None None None None
567 802239329049477120 NaN NaN 2016-11-25 19:55:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Loki. He'll do your taxes for you. Can... NaN NaN NaN https://twitter.com/dog_rates/status/802239329... 12 10 Loki None None None puppo
568 802185808107208704 NaN NaN 2016-11-25 16:22:55 +0000 <a href="http://twitter.com/download/iphone" r... RT @ChinoChinako: They're good products, Brent... 8.000650e+17 2.488557e+07 2016-11-19 19:55:41 +0000 https://twitter.com/ChinoChinako/status/800065... 13 10 None None None None None
569 801958328846974976 NaN NaN 2016-11-25 01:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Ronnie. He hopes you're having a great... NaN NaN NaN https://twitter.com/dog_rates/status/801958328... 12 10 Ronnie None None None None
570 801854953262350336 8.018543e+17 1.185634e+07 2016-11-24 18:28:13 +0000 <a href="http://twitter.com/download/iphone" r... .@NBCSports OMG THE TINY HAT I'M GOING TO HAVE... NaN NaN NaN NaN 11 10 None None None None None
571 801538201127157760 NaN NaN 2016-11-23 21:29:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Wallace. He'll be your chau-fur this e... NaN NaN NaN https://twitter.com/dog_rates/status/801538201... 12 10 Wallace None None None None
572 801285448605831168 NaN NaN 2016-11-23 04:45:12 +0000 <a href="http://twitter.com/download/iphone" r... oh h*ck 10/10 https://t.co/bC69RrW559 NaN NaN NaN https://twitter.com/dog_rates/status/801285448... 10 10 None None None None None
573 801167903437357056 NaN NaN 2016-11-22 20:58:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Milo. I would do terrible things for M... NaN NaN NaN https://twitter.com/dog_rates/status/801167903... 13 10 Milo None None None None
574 801127390143516673 NaN NaN 2016-11-22 18:17:08 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Anakin. He strives to r... 7.757333e+17 4.196984e+09 2016-09-13 16:30:07 +0000 https://twitter.com/dog_rates/status/775733305... 11 10 Anakin doggo None None None
575 801115127852503040 NaN NaN 2016-11-22 17:28:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Bones. He's being haunted by another d... NaN NaN NaN https://twitter.com/dog_rates/status/801115127... 12 10 Bones doggo None pupper None
576 800859414831898624 8.008580e+17 2.918590e+08 2016-11-22 00:32:18 +0000 <a href="http://twitter.com/download/iphone" r... @SkyWilliams doggo simply protecting you from ... NaN NaN NaN NaN 11 10 None doggo None None None
577 800855607700029440 NaN NaN 2016-11-22 00:17:10 +0000 <a href="http://twitter.com/download/iphone" r... RT @Lin_Manuel: 11/10 would recommend. https:/... 8.008540e+17 7.992370e+07 2016-11-22 00:10:52 +0000 https://twitter.com/littlewiewel/status/800852... 11 10 None None None None None
578 800751577355128832 NaN NaN 2016-11-21 17:23:47 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mauve and Murphy. They're rather ... NaN NaN NaN https://twitter.com/dog_rates/status/800751577... 12 10 Mauve None None None None
579 800513324630806528 NaN NaN 2016-11-21 01:37:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Chef. Chef loves everyone and wants ev... NaN NaN NaN https://twitter.com/dog_rates/status/800513324... 11 10 Chef None None None None
580 800459316964663297 NaN NaN 2016-11-20 22:02:27 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very sleepy pupper. Appears to be por... NaN NaN NaN https://twitter.com/dog_rates/status/800459316... 12 10 None None None pupper None
581 800443802682937345 NaN NaN 2016-11-20 21:00:48 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Sampson. He's about to ... 7.761133e+17 4.196984e+09 2016-09-14 17:40:06 +0000 https://twitter.com/dog_rates/status/776113305... 11 10 Sampson None None pupper None
582 800388270626521089 NaN NaN 2016-11-20 17:20:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Doc. He takes time out of every day to... NaN NaN NaN https://twitter.com/dog_rates/status/800388270... 12 10 Doc None floofer None None
583 800188575492947969 NaN NaN 2016-11-20 04:06:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bo. He's a Benedoop Cum... 6.816941e+17 4.196984e+09 2015-12-29 04:31:49 +0000 https://twitter.com/dog_rates/status/681694085... 11 10 Bo None None pupper None
584 800141422401830912 NaN NaN 2016-11-20 00:59:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Peaches. She's the ultimate selfie sid... NaN NaN NaN https://twitter.com/dog_rates/status/800141422... 13 10 Peaches None None None None
585 800018252395122689 NaN NaN 2016-11-19 16:49:49 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo doin a struggle. 11/10 much det... NaN NaN NaN https://twitter.com/dog_rates/status/800018252... 11 10 None doggo None None None
586 799774291445383169 NaN NaN 2016-11-19 00:40:24 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Tucker. He would like a... 7.750851e+17 4.196984e+09 2016-09-11 21:34:30 +0000 https://twitter.com/dog_rates/status/775085132... 13 10 Tucker None None None None
587 799757965289017345 NaN NaN 2016-11-18 23:35:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Sobe. She's a h*ckin happy doggo. Only... NaN NaN NaN https://twitter.com/dog_rates/status/799757965... 13 10 Sobe doggo None None None
588 799422933579902976 NaN NaN 2016-11-18 01:24:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Longfellow (prolly sophisticated). He'... NaN NaN NaN https://twitter.com/dog_rates/status/799422933... 12 10 Longfellow None None None None
589 799308762079035393 NaN NaN 2016-11-17 17:50:33 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I WAS SENT THE ACTUAL DOG IN TH... 7.743144e+17 4.196984e+09 2016-09-09 18:31:54 +0000 https://twitter.com/dog_rates/status/774314403... 14 10 None None None None None
590 799297110730567681 NaN NaN 2016-11-17 17:04:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrey. He's quite the jokester. Take... NaN NaN NaN https://twitter.com/dog_rates/status/799297110... 11 10 Jeffrey None None None None
591 799063482566066176 NaN NaN 2016-11-17 01:35:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Mister. He only wears the most fashion... NaN NaN NaN https://twitter.com/dog_rates/status/799063482... 11 10 Mister None None None None
592 798933969379225600 NaN NaN 2016-11-16 17:01:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Iroh. He's in a predicament. 12/10 som... NaN NaN NaN https://twitter.com/dog_rates/status/798933969... 12 10 Iroh None None None None
593 798925684722855936 NaN NaN 2016-11-16 16:28:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Shadow. He's a firm believer that they... NaN NaN NaN https://twitter.com/dog_rates/status/798925684... 11 10 Shadow None None None None
594 798705661114773508 NaN NaN 2016-11-16 01:54:03 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Baloo. He's expecting a fa... 7.406770e+17 4.196984e+09 2016-06-08 22:48:46 +0000 https://twitter.com/dog_rates/status/740676976... 11 10 Baloo None None pupper None
595 798701998996647937 NaN NaN 2016-11-16 01:39:30 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We normally don't rate marshmal... 7.186315e+17 4.196984e+09 2016-04-09 02:47:55 +0000 https://twitter.com/dog_rates/status/718631497... 10 10 None None None None None
596 798697898615730177 NaN NaN 2016-11-16 01:23:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Stubert. He just arrive... 7.128090e+17 4.196984e+09 2016-03-24 01:11:29 +0000 https://twitter.com/dog_rates/status/712809025... 10 10 Stubert None None None None
597 798694562394996736 NaN NaN 2016-11-16 01:09:57 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I'm not sure what's happening h... 7.012147e+17 4.196984e+09 2016-02-21 01:19:47 +0000 https://twitter.com/dog_rates/status/701214700... 12 10 None None None None None
598 798686750113755136 NaN NaN 2016-11-16 00:38:54 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Say hello to Jack (pronounced "... 6.833919e+17 4.196984e+09 2016-01-02 20:58:09 +0000 https://twitter.com/dog_rates/status/683391852... 11 10 Jack None None None None
599 798682547630837760 NaN NaN 2016-11-16 00:22:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Here we see a rare pouched pupp... 6.769365e+17 4.196984e+09 2015-12-16 01:27:03 +0000 https://twitter.com/dog_rates/status/676936541... 8 10 None None None pupper None
600 798673117451325440 NaN NaN 2016-11-15 23:44:44 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I shall call him squishy and he... 6.755011e+17 4.196984e+09 2015-12-12 02:23:01 +0000 https://twitter.com/dog_rates/status/675501075... 13 10 None None None None None
601 798665375516884993 NaN NaN 2016-11-15 23:13:58 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Lola. She fell asleep o... 6.718968e+17 4.196984e+09 2015-12-02 03:40:57 +0000 https://twitter.com/dog_rates/status/671896809... 10 10 Lola None None None None
602 798644042770751489 NaN NaN 2016-11-15 21:49:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Paull. He just stubbed ... 6.704450e+17 4.196984e+09 2015-11-28 03:31:48 +0000 https://twitter.com/dog_rates/status/670444955... 10 10 Paull None None None None
603 798628517273620480 NaN NaN 2016-11-15 20:47:30 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This a Norwegian Pewterschmidt ... 6.675094e+17 4.196984e+09 2015-11-20 01:06:48 +0000 https://twitter.com/dog_rates/status/667509364... 12 10 None None None None None
604 798585098161549313 NaN NaN 2016-11-15 17:54:59 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Timison. He just told a... 6.671828e+17 4.196984e+09 2015-11-19 03:29:07 +0000 https://twitter.com/dog_rates/status/667182792... 10 10 Timison None None None None
605 798576900688019456 NaN NaN 2016-11-15 17:22:24 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Not familiar with this breed. N... 6.661041e+17 4.196984e+09 2015-11-16 04:02:55 +0000 https://twitter.com/dog_rates/status/666104133... 1 10 None None None None None
606 798340744599797760 NaN NaN 2016-11-15 01:44:00 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Davey. He'll have your ... 7.717705e+17 4.196984e+09 2016-09-02 18:03:10 +0000 https://twitter.com/dog_rates/status/771770456... 11 10 Davey None None None None
607 798209839306514432 NaN NaN 2016-11-14 17:03:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. His bow tie was too heavy for ... NaN NaN NaN https://twitter.com/dog_rates/status/798209839... 13 10 Cooper None None None None
608 797971864723324932 NaN NaN 2016-11-14 01:18:12 +0000 <a href="http://twitter.com/download/iphone" r... Here's a helicopter pupper. He takes off at ra... NaN NaN NaN https://twitter.com/dog_rates/status/797971864... 12 10 None None None pupper None
609 797545162159308800 NaN NaN 2016-11-12 21:02:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She steals things. Guilt incre... NaN NaN NaN https://twitter.com/dog_rates/status/797545162... 12 10 Cassie None None None None
610 797236660651966464 NaN NaN 2016-11-12 00:36:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Pancake. She loves Batman and winks li... NaN NaN NaN https://twitter.com/dog_rates/status/797236660... 12 10 Pancake None None None None
611 797165961484890113 7.971238e+17 2.916630e+07 2016-11-11 19:55:50 +0000 <a href="http://twitter.com/download/iphone" r... @JODYHiGHROLLER it may be an 11/10 but what do... NaN NaN NaN NaN 11 10 None None None None None
612 796904159865868288 NaN NaN 2016-11-11 02:35:32 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Tyrone. He's a leaf wiz... 6.873173e+17 4.196984e+09 2016-01-13 16:56:30 +0000 https://twitter.com/dog_rates/status/687317306... 11 10 Tyrone None None None None
613 796865951799083009 NaN NaN 2016-11-11 00:03:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Tyr. He's just checking on you. Nifty ... NaN NaN NaN https://twitter.com/dog_rates/status/796865951... 12 10 Tyr None None None None
614 796759840936919040 NaN NaN 2016-11-10 17:02:03 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Romeo. He was just told that it's... NaN NaN NaN https://twitter.com/dog_rates/status/796759840... 11 10 Romeo None None None None
615 796563435802726400 NaN NaN 2016-11-10 04:01:37 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I want to finally rate this ico... 7.809316e+17 4.196984e+09 2016-09-28 00:46:20 +0000 https://twitter.com/dog_rates/status/780931614... 13 10 None None None None puppo
616 796484825502875648 NaN NaN 2016-11-09 22:49:15 +0000 <a href="http://twitter.com/download/iphone" r... Here's a sleepy doggo that requested some assi... NaN NaN NaN https://twitter.com/dog_rates/status/796484825... 12 10 None doggo None None None
617 796387464403357696 NaN NaN 2016-11-09 16:22:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Snicku. He's having trouble reading be... NaN NaN NaN https://twitter.com/dog_rates/status/796387464... 12 10 Snicku None None None None
618 796177847564038144 NaN NaN 2016-11-09 02:29:25 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Ruby. She just turned o... 7.961497e+17 4.196984e+09 2016-11-09 00:37:46 +0000 https://twitter.com/dog_rates/status/796149749... 11 10 Ruby None None None None
619 796149749086875649 NaN NaN 2016-11-09 00:37:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruby. She just turned on the news. Off... NaN NaN NaN https://twitter.com/dog_rates/status/796149749... 11 10 Ruby None None None None
620 796125600683540480 NaN NaN 2016-11-08 23:01:49 +0000 <a href="http://twitter.com/download/iphone" r... #ImWithThor 13/10\nhttps://t.co/a18mzkhTf6 NaN NaN NaN https://twitter.com/king5seattle/status/796123... 13 10 None None None None None
621 796116448414461957 NaN NaN 2016-11-08 22:25:27 +0000 <a href="http://twitter.com/download/iphone" r... I didn't believe it at first but now I can see... NaN NaN NaN https://twitter.com/dog_rates/status/796116448... 11 10 None None None None None
622 796080075804475393 NaN NaN 2016-11-08 20:00:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Yogi. He's 98% floof. Snuggable af. 12... NaN NaN NaN https://twitter.com/dog_rates/status/796080075... 12 10 Yogi None None None None
623 796031486298386433 NaN NaN 2016-11-08 16:47:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She's here to make your day bet... NaN NaN NaN https://twitter.com/dog_rates/status/796031486... 13 10 Daisy None None None None
624 795464331001561088 NaN NaN 2016-11-07 03:14:10 +0000 <a href="http://twitter.com/download/iphone" r... Elder doggo does a splash. Both 13/10 incredib... NaN NaN NaN https://twitter.com/dog_rates/status/795464331... 13 10 None doggo None None None
625 795400264262053889 NaN NaN 2016-11-06 22:59:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Brody. He's trying to make the same fa... NaN NaN NaN https://twitter.com/dog_rates/status/795400264... 12 10 Brody None None None None
626 795076730285391872 NaN NaN 2016-11-06 01:33:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. She loves going down slides bu... NaN NaN NaN https://twitter.com/dog_rates/status/795076730... 11 10 Bailey None None None None
627 794983741416415232 NaN NaN 2016-11-05 19:24:28 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Rizzy. She smiles a lot... 7.895309e+17 4.196984e+09 2016-10-21 18:16:44 +0000 https://twitter.com/dog_rates/status/789530877... 12 10 Rizzy None None None None
628 794926597468000259 NaN NaN 2016-11-05 15:37:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Mack. He's rather h*ckin sleepy. Excep... NaN NaN NaN https://twitter.com/dog_rates/status/794926597... 12 10 Mack None None None None
629 794355576146903043 NaN NaN 2016-11-04 01:48:22 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Butter. She can have wh... 7.887659e+17 4.196984e+09 2016-10-19 15:37:03 +0000 https://twitter.com/dog_rates/status/788765914... 12 10 Butter None None None None
630 794332329137291264 NaN NaN 2016-11-04 00:15:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Nimbus (like the cloud). He just bough... NaN NaN NaN https://twitter.com/dog_rates/status/794332329... 12 10 Nimbus None None None None
631 794205286408003585 NaN NaN 2016-11-03 15:51:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Laika. She was a space pupper. The fir... NaN NaN NaN https://twitter.com/dog_rates/status/794205286... 14 10 Laika None None pupper None
632 793962221541933056 NaN NaN 2016-11-02 23:45:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Maximus. His face is stuck like that. ... NaN NaN NaN https://twitter.com/dog_rates/status/793962221... 12 10 Maximus None None None None
633 793845145112371200 NaN NaN 2016-11-02 16:00:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Clark. He was just caught wearing pant... NaN NaN NaN https://twitter.com/dog_rates/status/793845145... 13 10 Clark None None None None
634 793614319594401792 NaN NaN 2016-11-02 00:42:53 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: When she says you're a good boy... 7.916723e+17 4.196984e+09 2016-10-27 16:06:04 +0000 https://twitter.com/dog_rates/status/791672322... 13 10 None None None None None
635 793601777308463104 NaN NaN 2016-11-01 23:53:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Dobby. I can't stop looking at her fee... NaN NaN NaN https://twitter.com/dog_rates/status/793601777... 12 10 Dobby None None None None
636 793500921481273345 NaN NaN 2016-11-01 17:12:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Fiona. She's an extremely mediocre cop... NaN NaN NaN https://twitter.com/dog_rates/status/793500921... 12 10 Fiona None None None None
637 793286476301799424 NaN NaN 2016-11-01 03:00:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Moreton. He's the Good Boy Who Lived. ... NaN NaN NaN https://twitter.com/dog_rates/status/793286476... 13 10 Moreton None None None None
638 793271401113350145 NaN NaN 2016-11-01 02:00:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dave. It's his favorite day of the year. ... NaN NaN NaN https://twitter.com/dog_rates/status/793271401... 12 10 Dave None None None None
639 793256262322548741 NaN NaN 2016-11-01 01:00:05 +0000 <a href="http://twitter.com/download/iphone" r... Oh h*ck look at this spookling right here. Fri... NaN NaN NaN https://twitter.com/dog_rates/status/793256262... 12 10 None None None None None
640 793241302385262592 NaN NaN 2016-11-01 00:00:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He's out here bustin h*ckin gh... NaN NaN NaN https://twitter.com/dog_rates/status/793241302... 13 10 Tucker None None None None
641 793226087023144960 NaN NaN 2016-10-31 23:00:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Juno. She spooked me up real good, but... NaN NaN NaN https://twitter.com/dog_rates/status/793226087... 11 10 Juno None None None None
642 793210959003287553 NaN NaN 2016-10-31 22:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Maude. She's the h*ckin happiest wasp ... NaN NaN NaN https://twitter.com/dog_rates/status/793210959... 10 10 Maude None None None None
643 793195938047070209 NaN NaN 2016-10-31 21:00:23 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lily. She's pupset that her costu... NaN NaN NaN https://twitter.com/dog_rates/status/793195938... 12 10 Lily None None None puppo
644 793180763617361921 NaN NaN 2016-10-31 20:00:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Newt. He's a strawberry. 11/10 https:/... NaN NaN NaN https://twitter.com/dog_rates/status/793180763... 11 10 Newt None None None None
645 793165685325201412 NaN NaN 2016-10-31 19:00:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Benji. He's Air Bud. It's a low effort... NaN NaN NaN https://twitter.com/dog_rates/status/793165685... 12 10 Benji None None None None
646 793150605191548928 NaN NaN 2016-10-31 18:00:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Nida. She's a free elf. Waited so long... NaN NaN NaN https://twitter.com/dog_rates/status/793150605... 11 10 Nida None None None None
647 793135492858580992 NaN NaN 2016-10-31 17:00:11 +0000 <a href="http://twitter.com/download/iphone" r... Your favorite squad is looking extra h*ckin sp... NaN NaN NaN https://twitter.com/dog_rates/status/793135492... 13 10 None None None None None
648 793120401413079041 NaN NaN 2016-10-31 16:00:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Robin. She's desperately trying to do ... NaN NaN NaN https://twitter.com/dog_rates/status/793120401... 11 10 Robin None None None None
649 792913359805018113 NaN NaN 2016-10-31 02:17:31 +0000 <a href="http://twitter.com/download/iphone" r... Here is a perfect example of someone who has t... NaN NaN NaN https://twitter.com/dog_rates/status/792913359... 13 10 a None None None None
650 792883833364439040 NaN NaN 2016-10-31 00:20:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. She's rather h*ckin hype for H... NaN NaN NaN https://twitter.com/dog_rates/status/792883833... 12 10 Bailey None None None None
651 792773781206999040 NaN NaN 2016-10-30 17:02:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Monster. Not an actual monster tho. He... NaN NaN NaN https://twitter.com/dog_rates/status/792773781... 12 10 Monster None None None None
652 792394556390137856 NaN NaN 2016-10-29 15:55:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet BeBe. She rocks the messy bun of your dre... NaN NaN NaN https://twitter.com/dog_rates/status/792394556... 12 10 BeBe None None None None
653 792050063153438720 NaN NaN 2016-10-28 17:07:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Remus. He's a mop that came to life. C... NaN NaN NaN https://twitter.com/dog_rates/status/792050063... 11 10 Remus None None None None
654 791821351946420224 NaN NaN 2016-10-28 01:58:16 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This little fella really hates ... 6.848310e+17 4.196984e+09 2016-01-06 20:16:44 +0000 https://vine.co/v/eEZXZI1rqxX,https://vine.co/... 13 10 None None None pupper None
655 791784077045166082 NaN NaN 2016-10-27 23:30:09 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: I'm not sure what this dog is d... 6.820881e+17 4.196984e+09 2015-12-30 06:37:25 +0000 https://vine.co/v/iqMjlxULzbn,https://vine.co/... 12 10 None None None None None
656 791780927877898241 NaN NaN 2016-10-27 23:17:38 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Maddie. She gets some w... 7.467577e+17 4.196984e+09 2016-06-25 17:31:25 +0000 https://vine.co/v/5BYq6hmrEI3,https://vine.co/... 11 10 Maddie None None None None
657 791774931465953280 NaN NaN 2016-10-27 22:53:48 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Vine will be deeply missed. This was by far my... NaN NaN NaN https://vine.co/v/ea0OwvPTx9l 14 10 None None None None None
658 791672322847637504 NaN NaN 2016-10-27 16:06:04 +0000 <a href="http://twitter.com/download/iphone" r... When she says you're a good boy and you know y... NaN NaN NaN https://twitter.com/dog_rates/status/791672322... 13 10 None None None None None
659 791406955684368384 NaN NaN 2016-10-26 22:31:36 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Levi. He's a Madagascan Butterbop... NaN NaN NaN https://twitter.com/dog_rates/status/791406955... 12 10 Levi None None None None
660 791312159183634433 NaN NaN 2016-10-26 16:14:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Mabel. She's super h*ckin smol. Portab... NaN NaN NaN https://twitter.com/dog_rates/status/791312159... 12 10 Mabel None None None None
661 791026214425268224 NaN NaN 2016-10-25 21:18:40 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Alfie. He's touching a ... 7.638376e+17 4.196984e+09 2016-08-11 20:40:41 +0000 https://twitter.com/dog_rates/status/763837565... 11 10 Alfie None None None None
662 790987426131050500 NaN NaN 2016-10-25 18:44:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Misty. She has a cowboy hat on her nos... NaN NaN NaN https://twitter.com/dog_rates/status/790987426... 12 10 Misty None None None None
663 790946055508652032 NaN NaN 2016-10-25 16:00:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Betty. She's assisting with the dishes... NaN NaN NaN https://twitter.com/dog_rates/status/790946055... 12 10 Betty None None None puppo
664 790723298204217344 NaN NaN 2016-10-25 01:14:59 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Happy. He's a bathtub r... 7.899865e+17 4.196984e+09 2016-10-23 00:27:05 +0000 https://twitter.com/dog_rates/status/789986466... 12 10 Happy None None None None
665 790698755171364864 NaN NaN 2016-10-24 23:37:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Mosby. He appears to be rather h*ckin ... NaN NaN NaN https://twitter.com/dog_rates/status/790698755... 12 10 Mosby None None None None
666 790581949425475584 NaN NaN 2016-10-24 15:53:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Duke. He sneaks into the fridge someti... NaN NaN NaN https://twitter.com/dog_rates/status/790581949... 11 10 Duke None None None None
667 790337589677002753 NaN NaN 2016-10-23 23:42:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Maggie. She can hear your cells divide. 1... NaN NaN NaN https://twitter.com/dog_rates/status/790337589... 12 10 Maggie None None None None
668 790277117346975746 NaN NaN 2016-10-23 19:42:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruce. He never backs down from a chal... NaN NaN NaN https://twitter.com/dog_rates/status/790277117... 11 10 Bruce None None None None
669 790227638568808452 NaN NaN 2016-10-23 16:25:25 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Leela. She's a Fetty Wo... 7.626999e+17 4.196984e+09 2016-08-08 17:19:51 +0000 https://twitter.com/dog_rates/status/762699858... 11 10 Leela None None None None
670 789986466051088384 NaN NaN 2016-10-23 00:27:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Happy. He's a bathtub reviewer. Seems ... NaN NaN NaN https://twitter.com/dog_rates/status/789986466... 12 10 Happy None None None None
671 789960241177853952 NaN NaN 2016-10-22 22:42:52 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Buddy. His father was a... 7.624645e+17 4.196984e+09 2016-08-08 01:44:46 +0000 https://twitter.com/dog_rates/status/762464539... 12 10 Buddy None None None None
672 789903600034189313 NaN NaN 2016-10-22 18:57:48 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Ralphy. His dreams were just shattered... NaN NaN NaN https://vine.co/v/5wPT1aBxPQZ 13 10 Ralphy None None pupper None
673 789628658055020548 NaN NaN 2016-10-22 00:45:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Eli. He can fly. 13/10 magical af http... NaN NaN NaN https://twitter.com/dog_rates/status/789628658... 13 10 Eli None None None None
674 789599242079838210 NaN NaN 2016-10-21 22:48:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Brownie. She's wearing a Halloween the... NaN NaN NaN https://twitter.com/dog_rates/status/789599242... 12 10 Brownie None None None None
675 789530877013393408 NaN NaN 2016-10-21 18:16:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Rizzy. She smiles a lot. 12/10 contagi... NaN NaN NaN https://twitter.com/dog_rates/status/789530877... 12 10 Rizzy None None None None
676 789314372632018944 NaN NaN 2016-10-21 03:56:25 +0000 <a href="http://twitter.com/download/iphone" r... HE WAS JUST A LIL SLEEPY FROM BEING SUCH A GOO... NaN NaN NaN https://twitter.com/sebscat/status/78881832853... 13 10 None None None None None
677 789280767834746880 NaN NaN 2016-10-21 01:42:53 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Meyer. He has to hold s... 7.507196e+17 4.196984e+09 2016-07-06 15:54:42 +0000 https://twitter.com/dog_rates/status/750719632... 12 10 Meyer None None None None
678 789268448748703744 NaN NaN 2016-10-21 00:53:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Stella. She's happier than I will ever... NaN NaN NaN https://twitter.com/dog_rates/status/789268448... 10 10 Stella None None None None
679 789137962068021249 NaN NaN 2016-10-20 16:15:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Bo. He's a West Congolese Bugaboop Snu... NaN NaN NaN https://twitter.com/dog_rates/status/789137962... 12 10 Bo None None None None
680 788908386943430656 NaN NaN 2016-10-20 01:03:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She destroyed not one, but two r... NaN NaN NaN https://twitter.com/dog_rates/status/788908386... 11 10 Lucy None None None None
681 788765914992902144 NaN NaN 2016-10-19 15:37:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Butter. She can have whatever she want... NaN NaN NaN https://twitter.com/dog_rates/status/788765914... 12 10 Butter None None None None
682 788552643979468800 NaN NaN 2016-10-19 01:29:35 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Say hello to mad pupper. You kn... 7.363926e+17 4.196984e+09 2016-05-28 03:04:00 +0000 https://vine.co/v/iEggaEOiLO3,https://vine.co/... 13 10 mad None None pupper None
683 788412144018661376 NaN NaN 2016-10-18 16:11:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Dexter. He breaks hearts for a living.... NaN NaN NaN https://twitter.com/dog_rates/status/788412144... 11 10 Dexter None None None None
684 788178268662984705 NaN NaN 2016-10-18 00:41:57 +0000 <a href="http://twitter.com/download/iphone" r... Atlas is back and this time he's got doggles. ... NaN NaN NaN https://twitter.com/dog_rates/status/788178268... 13 10 None None None None None
685 788150585577050112 NaN NaN 2016-10-17 22:51:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He's a golden chow. Rather h*ckin... NaN NaN NaN https://twitter.com/dog_rates/status/788150585... 13 10 Leo None None None None
686 788070120937619456 NaN NaN 2016-10-17 17:32:13 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bo and Ty. Bo eats pape... 7.610045e+17 4.196984e+09 2016-08-04 01:03:17 +0000 https://twitter.com/dog_rates/status/761004547... 11 10 Bo None None None None
687 788039637453406209 NaN NaN 2016-10-17 15:31:05 +0000 <a href="http://twitter.com/download/iphone" r... Did... did they pick out that license plate? 1... NaN NaN NaN https://twitter.com/dog_rates/status/788039637... 12 10 None None None None None
688 787810552592695296 NaN NaN 2016-10-17 00:20:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Frank. He wears sunglasses and walks h... NaN NaN NaN https://twitter.com/dog_rates/status/787810552... 11 10 Frank None None None None
689 787717603741622272 NaN NaN 2016-10-16 18:11:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Tonks. She is a service puppo. Can hea... NaN NaN NaN https://twitter.com/dog_rates/status/787717603... 13 10 Tonks None None None puppo
690 787397959788929025 NaN NaN 2016-10-15 21:01:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Moose. He's rather h*ckin dangerous (y... NaN NaN NaN https://twitter.com/dog_rates/status/787397959... 11 10 Moose None None None None
691 787322443945877504 NaN NaN 2016-10-15 16:01:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Lincoln. He forgot to use his blinker ... NaN NaN NaN https://twitter.com/dog_rates/status/787322443... 10 10 Lincoln None None None None
692 787111942498508800 NaN NaN 2016-10-15 02:04:45 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Carl. He's very powerfu... 7.529324e+17 4.196984e+09 2016-07-12 18:27:35 +0000 https://vine.co/v/OEppMFbejFz,https://vine.co/... 12 10 Carl None None None None
693 786963064373534720 NaN NaN 2016-10-14 16:13:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Rory. He's got an interview in a few m... NaN NaN NaN https://twitter.com/dog_rates/status/786963064... 12 10 Rory None None None None
694 786729988674449408 NaN NaN 2016-10-14 00:47:00 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Oakley. He has no idea ... 7.594477e+17 4.196984e+09 2016-07-30 17:56:51 +0000 https://twitter.com/dog_rates/status/759447681... 11 10 Oakley None None None None
695 786709082849828864 NaN NaN 2016-10-13 23:23:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Logan, the Chow who lived. He solemnly... NaN NaN NaN https://twitter.com/dog_rates/status/786709082... 75 10 Logan None None None None
696 786664955043049472 NaN NaN 2016-10-13 20:28:35 +0000 <a href="http://twitter.com/download/iphone" r... "Honestly Kathleen I just want more Ken Bone" ... NaN NaN NaN https://twitter.com/dog_rates/status/786664955... 12 10 None None None None None
697 786595970293370880 NaN NaN 2016-10-13 15:54:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Dale. He's a real spookster. Did me qu... NaN NaN NaN https://twitter.com/dog_rates/status/786595970... 11 10 Dale None None None None
698 786363235746385920 NaN NaN 2016-10-13 00:29:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Rizzo. He has many talents. A true ren... NaN NaN NaN https://twitter.com/dog_rates/status/786363235... 13 10 Rizzo doggo None None None
699 786286427768250368 NaN NaN 2016-10-12 19:24:27 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Arnie. He's afraid of his own bark. 12... NaN NaN NaN https://vine.co/v/5XH0WqHwiFp 12 10 Arnie None None None None
700 786233965241827333 NaN NaN 2016-10-12 15:55:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Mattie. She's extremely dangerous. Wil... NaN NaN NaN https://twitter.com/dog_rates/status/786233965... 11 10 Mattie None None None None
701 786051337297522688 7.727430e+17 7.305050e+17 2016-10-12 03:50:17 +0000 <a href="http://twitter.com/download/iphone" r... 13/10 for breakdancing puppo @shibbnbot NaN NaN NaN NaN 13 10 None None None None puppo
702 786036967502913536 NaN NaN 2016-10-12 02:53:11 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Scout. He really wants ... 7.798343e+17 4.196984e+09 2016-09-25 00:06:08 +0000 https://twitter.com/dog_rates/status/779834332... 11 10 Scout None None None None
703 785927819176054784 NaN NaN 2016-10-11 19:39:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She's strives to be the best pot... NaN NaN NaN https://twitter.com/dog_rates/status/785927819... 12 10 Lucy None None None None
704 785872687017132033 NaN NaN 2016-10-11 16:00:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rusty. He appears to be rather h*ckin flu... NaN NaN NaN https://twitter.com/dog_rates/status/785872687... 12 10 Rusty None None None None
705 785639753186217984 NaN NaN 2016-10-11 00:34:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Pinot. He's a sophisticated doggo. You... NaN NaN NaN https://twitter.com/dog_rates/status/785639753... 10 10 Pinot doggo None pupper None
706 785533386513321988 NaN NaN 2016-10-10 17:32:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Dallas. Her tongue is ridiculous. 11/1... NaN NaN NaN https://twitter.com/dog_rates/status/785533386... 11 10 Dallas None None None None
707 785515384317313025 NaN NaN 2016-10-10 16:20:36 +0000 <a href="http://twitter.com/download/iphone" r... Today, 10/10, should be National Dog Rates Day NaN NaN NaN NaN 10 10 None None None None None
708 785264754247995392 NaN NaN 2016-10-09 23:44:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Doc. He requested to be carried around... NaN NaN NaN https://twitter.com/dog_rates/status/785264754... 12 10 Doc None None None None
709 785170936622350336 NaN NaN 2016-10-09 17:31:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Hero. He was enjoying the car ride unt... NaN NaN NaN https://twitter.com/dog_rates/status/785170936... 11 10 Hero None None None None
710 784826020293709826 NaN NaN 2016-10-08 18:41:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Rusty. He's going D1 for sure. Insane ... NaN NaN NaN https://twitter.com/dog_rates/status/784826020... 13 10 Rusty None None None None
711 784517518371221505 NaN NaN 2016-10-07 22:15:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Frankie. He has yet to learn how to co... NaN NaN NaN https://twitter.com/dog_rates/status/784517518... 11 10 Frankie None None None None
712 784431430411685888 NaN NaN 2016-10-07 16:33:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Stormy. He's curly af. Already pupared... NaN NaN NaN https://twitter.com/dog_rates/status/784431430... 12 10 Stormy None None None None
713 784183165795655680 NaN NaN 2016-10-07 00:06:50 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Reginald. He's one magical puppo. Aero... NaN NaN NaN https://vine.co/v/5ghHLBMMdlV 12 10 Reginald None None None puppo
714 784057939640352768 NaN NaN 2016-10-06 15:49:14 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Balto. He's very content. Legendary to... NaN NaN NaN https://vine.co/v/5gKxeUpuKEr 12 10 Balto None None None None
715 783839966405230592 NaN NaN 2016-10-06 01:23:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Riley. His owner put a donut pillow ar... NaN NaN NaN https://twitter.com/dog_rates/status/783839966... 13 10 Riley None None None None
716 783821107061198850 NaN NaN 2016-10-06 00:08:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Mairi. She has mastered the art of cam... NaN NaN NaN https://twitter.com/dog_rates/status/783821107... 12 10 Mairi None None None None
717 783695101801398276 NaN NaN 2016-10-05 15:47:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Loomis. He's the leader of the Kenneth... NaN NaN NaN https://twitter.com/dog_rates/status/783695101... 12 10 Loomis None None None None
718 783466772167098368 NaN NaN 2016-10-05 00:40:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Finn. He likes eavesdropping from fili... NaN NaN NaN https://twitter.com/dog_rates/status/783466772... 11 10 Finn None None None None
719 783391753726550016 NaN NaN 2016-10-04 19:42:03 +0000 <a href="http://twitter.com/download/iphone" r... Meet Godi. He's an avid beachgoer and part tim... NaN NaN NaN https://twitter.com/dog_rates/status/783391753... 13 10 Godi None None None None
720 783347506784731136 NaN NaN 2016-10-04 16:46:14 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Kenny. He just wants to... 6.742918e+17 4.196984e+09 2015-12-08 18:17:56 +0000 https://twitter.com/dog_rates/status/674291837... 11 10 Kenny None None None None
721 783334639985389568 NaN NaN 2016-10-04 15:55:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Dave. He's currently in a predicament.... NaN NaN NaN https://twitter.com/dog_rates/status/783334639... 12 10 Dave None None None None
722 783085703974514689 NaN NaN 2016-10-03 23:25:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Earl. He can't catch. Did his best tho... NaN NaN NaN https://twitter.com/dog_rates/status/783085703... 11 10 Earl None None None None
723 782969140009107456 NaN NaN 2016-10-03 15:42:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Cali. She arrived preassembled. Conven... NaN NaN NaN https://twitter.com/dog_rates/status/782969140... 12 10 Cali None None None None
724 782747134529531904 NaN NaN 2016-10-03 01:00:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Deacon. He's the happiest almost dry d... NaN NaN NaN https://twitter.com/dog_rates/status/782747134... 11 10 Deacon doggo None None None
725 782722598790725632 NaN NaN 2016-10-02 23:23:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She fought a bee and the bee wo... NaN NaN NaN https://twitter.com/dog_rates/status/782722598... 10 10 Penny None None None None
726 782598640137187329 NaN NaN 2016-10-02 15:10:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Timmy. He's quite large. According to ... NaN NaN NaN https://twitter.com/dog_rates/status/782598640... 11 10 Timmy None None None None
727 782305867769217024 NaN NaN 2016-10-01 19:47:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Sampson. He just graduated. Ready to b... NaN NaN NaN https://twitter.com/dog_rates/status/782305867... 12 10 Sampson doggo None None None
728 782021823840026624 NaN NaN 2016-10-01 00:58:26 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Harper. She scraped her... 7.076109e+17 4.196984e+09 2016-03-09 16:56:11 +0000 https://twitter.com/dog_rates/status/707610948... 12 10 Harper None None None None
729 781955203444699136 NaN NaN 2016-09-30 20:33:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Chipson. He weighed in at .3 ounces an... NaN NaN NaN https://twitter.com/dog_rates/status/781955203... 11 10 Chipson None None None None
730 781661882474196992 NaN NaN 2016-09-30 01:08:10 +0000 <a href="http://twitter.com/download/iphone" r... Who keeps sending in pictures without dogs in ... NaN NaN NaN https://twitter.com/dog_rates/status/781661882... 5 10 None None None None None
731 781655249211752448 NaN NaN 2016-09-30 00:41:48 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Combo. The daily struggles of being a ... NaN NaN NaN https://vine.co/v/5rt6T3qm7hL 11 10 Combo doggo None None None
732 781524693396357120 NaN NaN 2016-09-29 16:03:01 +0000 <a href="http://twitter.com/download/iphone" r... Idk why this keeps happening. We only rate dog... NaN NaN NaN https://twitter.com/dog_rates/status/781524693... 12 10 None None None None None
733 781308096455073793 NaN NaN 2016-09-29 01:42:20 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Pupper butt 1, Doggo 0. Both 12/10 https://t.c... NaN NaN NaN https://vine.co/v/5rgu2Law2ut 12 10 None doggo None pupper None
734 781251288990355457 NaN NaN 2016-09-28 21:56:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Oakley. He just got yelled at for goin... NaN NaN NaN https://twitter.com/dog_rates/status/781251288... 11 10 Oakley None None None None
735 781163403222056960 NaN NaN 2016-09-28 16:07:23 +0000 <a href="http://twitter.com/download/iphone" r... We normally don't rate lobsters, but this one ... NaN NaN NaN https://twitter.com/dog_rates/status/781163403... 10 10 None None None None None
736 780931614150983680 NaN NaN 2016-09-28 00:46:20 +0000 <a href="http://twitter.com/download/iphone" r... I want to finally rate this iconic puppo who t... NaN NaN NaN https://twitter.com/dog_rates/status/780931614... 13 10 None None None None puppo
737 780858289093574656 NaN NaN 2016-09-27 19:54:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Dash. He's very stylish, but also incr... NaN NaN NaN https://twitter.com/dog_rates/status/780858289... 10 10 Dash None None None None
738 780800785462489090 NaN NaN 2016-09-27 16:06:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. He has a weird relationship with... NaN NaN NaN https://twitter.com/dog_rates/status/780800785... 11 10 Koda None None None None
739 780601303617732608 NaN NaN 2016-09-27 02:53:48 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hercules. He can have whatever he wants f... NaN NaN NaN https://twitter.com/dog_rates/status/780601303... 12 10 Hercules None None None None
740 780543529827336192 NaN NaN 2016-09-26 23:04:13 +0000 <a href="http://twitter.com/download/iphone" r... Here's a perturbed super floof. 12/10 would sn... NaN NaN NaN https://twitter.com/dog_rates/status/780543529... 12 10 None None None None None
741 780496263422808064 NaN NaN 2016-09-26 19:56:24 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Bell. She likes holding... 7.424232e+17 4.196984e+09 2016-06-13 18:27:32 +0000 https://twitter.com/dog_rates/status/742423170... 12 10 Bell None None None None
742 780476555013349377 NaN NaN 2016-09-26 18:38:05 +0000 <a href="http://twitter.com/download/iphone" r... RT @Patreon: Well. @dog_rates is on Patreon. \... 7.804657e+17 1.228326e+09 2016-09-26 17:55:00 +0000 https://www.patreon.com/WeRateDogs,https://twi... 12 10 None None None None None
743 780459368902959104 NaN NaN 2016-09-26 17:29:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Bear. Don't worry, he's not a real bea... NaN NaN NaN https://twitter.com/dog_rates/status/780459368... 11 10 Bear None None None None
744 780192070812196864 NaN NaN 2016-09-25 23:47:39 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Pls stop sending in non-can... NaN NaN NaN https://twitter.com/dog_rates/status/780192070... 11 10 None None None None None
745 780092040432480260 NaN NaN 2016-09-25 17:10:10 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Hank. He's mischievous ... 7.533757e+17 4.196984e+09 2016-07-13 23:48:51 +0000 https://twitter.com/dog_rates/status/753375668... 8 10 Hank None None None None
746 780074436359819264 NaN NaN 2016-09-25 16:00:13 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Here's a doggo questioning his entire existenc... NaN NaN NaN https://vine.co/v/5nzYBpl0TY2 10 10 None doggo None None None
747 779834332596887552 NaN NaN 2016-09-25 00:06:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. He really wants to kiss himself... NaN NaN NaN https://twitter.com/dog_rates/status/779834332... 11 10 Scout None None None None
748 779377524342161408 NaN NaN 2016-09-23 17:50:56 +0000 <a href="http://twitter.com/download/iphone" r... Have you ever seen such a smol pupper? Portabl... NaN NaN NaN https://twitter.com/dog_rates/status/779377524... 12 10 None None None pupper None
749 779124354206535695 NaN NaN 2016-09-23 01:04:56 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Hurley. He's the curly one... 6.794628e+17 4.196984e+09 2015-12-23 00:45:35 +0000 https://twitter.com/dog_rates/status/679462823... 11 10 Hurley None None None None
750 779123168116150273 NaN NaN 2016-09-23 01:00:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Reggie. He hugs everyone he meets. 12/... NaN NaN NaN https://twitter.com/dog_rates/status/779123168... 12 10 Reggie None None None None
751 779056095788752897 NaN NaN 2016-09-22 20:33:42 +0000 <a href="http://twitter.com/download/iphone" r... Everybody drop what you're doing and look at t... NaN NaN NaN https://twitter.com/dog_rates/status/779056095... 13 10 None None None None None
752 778990705243029504 NaN NaN 2016-09-22 16:13:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Jay. He's really h*ckin happy about th... NaN NaN NaN https://twitter.com/dog_rates/status/778990705... 11 10 Jay None None None None
753 778774459159379968 NaN NaN 2016-09-22 01:54:34 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: In case you haven't seen the mo... 7.580996e+17 4.196984e+09 2016-07-27 00:40:12 +0000 https://vine.co/v/hQJbaj1VpIz,https://vine.co/... 13 10 None None None None None
754 778764940568104960 NaN NaN 2016-09-22 01:16:45 +0000 <a href="http://twitter.com/download/iphone" r... Oh my god it's Narcos but Barkos. 13/10 someon... NaN NaN NaN https://m.youtube.com/watch?v=idKxCMsS3FQ&feat... 13 10 None None None None None
755 778748913645780993 NaN NaN 2016-09-22 00:13:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Mya (pronounced "mmmyah?"). Her head i... NaN NaN NaN https://twitter.com/dog_rates/status/778748913... 11 10 Mya None None None None
756 778650543019483137 NaN NaN 2016-09-21 17:42:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Strider. He thinks he's a sorority girl. ... NaN NaN NaN https://twitter.com/dog_rates/status/778650543... 10 10 Strider None None None None
757 778624900596654080 NaN NaN 2016-09-21 16:00:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's a sailor pup. 11/10 would... NaN NaN NaN https://twitter.com/dog_rates/status/778624900... 11 10 Penny None None None None
758 778408200802557953 NaN NaN 2016-09-21 01:39:11 +0000 <a href="http://twitter.com/download/iphone" r... RIP Loki. Thank you for the good times. You wi... NaN NaN NaN https://twitter.com/dog_rates/status/778408200... 14 10 None None None None None
759 778396591732486144 NaN NaN 2016-09-21 00:53:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is an East African Chalupa... 7.030419e+17 4.196984e+09 2016-02-26 02:20:37 +0000 https://twitter.com/dog_rates/status/703041949... 10 10 an None None None None
760 778383385161035776 NaN NaN 2016-09-21 00:00:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Nala. She's a future Dogue model. Won'... NaN NaN NaN https://twitter.com/dog_rates/status/778383385... 13 10 Nala None None None None
761 778286810187399168 NaN NaN 2016-09-20 17:36:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. He has too much skin. Isn't h... NaN NaN NaN https://twitter.com/dog_rates/status/778286810... 11 10 Stanley None None None None
762 778039087836069888 NaN NaN 2016-09-20 01:12:28 +0000 <a href="http://twitter.com/download/iphone" r... Evolution of a pupper yawn featuring Max. 12/1... NaN NaN NaN https://twitter.com/dog_rates/status/778039087... 12 10 None None None pupper None
763 778027034220126208 NaN NaN 2016-09-20 00:24:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Sophie. She's a Jubilant Bush Pupper. ... NaN NaN NaN https://twitter.com/dog_rates/status/778027034... 27 10 Sophie None None pupper None
764 777953400541634568 NaN NaN 2016-09-19 19:31:59 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Gerald. He's a fairly exot... 7.681934e+17 4.196984e+09 2016-08-23 21:09:14 +0000 https://twitter.com/dog_rates/status/768193404... 8 10 Gerald doggo None None None
765 777885040357281792 NaN NaN 2016-09-19 15:00:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Wesley. He's clearly trespassing. Seem... NaN NaN NaN https://twitter.com/dog_rates/status/777885040... 3 10 Wesley None None None None
766 777684233540206592 NaN NaN 2016-09-19 01:42:24 +0000 <a href="http://twitter.com/download/iphone" r... "Yep... just as I suspected. You're not flossi... NaN NaN NaN https://twitter.com/dog_rates/status/777684233... 12 10 None None None None None
767 777641927919427584 NaN NaN 2016-09-18 22:54:18 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Arnie. He's a Nova Scot... 7.504293e+17 4.196984e+09 2016-07-05 20:41:01 +0000 https://twitter.com/dog_rates/status/750429297... 12 10 Arnie None None None None
768 777621514455814149 NaN NaN 2016-09-18 21:33:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Derek. You can't look at him and not s... NaN NaN NaN https://twitter.com/dog_rates/status/777621514... 12 10 Derek None None None None
769 777189768882946048 NaN NaN 2016-09-17 16:57:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrey. He's being held so he doesn't... NaN NaN NaN https://twitter.com/dog_rates/status/777189768... 12 10 Jeffrey None None None None
770 776819012571455488 NaN NaN 2016-09-16 16:24:19 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Everybody look at this beautifu... 6.798284e+17 4.196984e+09 2015-12-24 00:58:27 +0000 https://twitter.com/dog_rates/status/679828447... 13 10 None None None pupper None
771 776813020089548800 NaN NaN 2016-09-16 16:00:31 +0000 <a href="http://twitter.com/download/iphone" r... Meet Solomon. He was arrested for possession o... NaN NaN NaN https://twitter.com/dog_rates/status/776813020... 12 10 Solomon None None None None
772 776477788987613185 NaN NaN 2016-09-15 17:48:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Huck. He's addicted to caffeine. Hope ... NaN NaN NaN https://twitter.com/dog_rates/status/776477788... 11 10 Huck None None pupper None
773 776249906839351296 NaN NaN 2016-09-15 02:42:54 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We only rate dogs. Pls stop sen... 7.007478e+17 4.196984e+09 2016-02-19 18:24:26 +0000 https://twitter.com/dog_rates/status/700747788... 11 10 very None None None None
774 776218204058357768 NaN NaN 2016-09-15 00:36:55 +0000 <a href="http://twitter.com/download/iphone" r... Atlas rolled around in some chalk and now he's... NaN NaN NaN https://twitter.com/dog_rates/status/776218204... 13 10 None None floofer None None
775 776201521193218049 NaN NaN 2016-09-14 23:30:38 +0000 <a href="http://twitter.com/download/iphone" r... This is O'Malley. That is how he sleeps. Doesn... NaN NaN NaN https://twitter.com/dog_rates/status/776201521... 10 10 O None None None None
776 776113305656188928 NaN NaN 2016-09-14 17:40:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Sampson. He's about to get hit with a ... NaN NaN NaN https://twitter.com/dog_rates/status/776113305... 11 10 Sampson None None pupper None
777 776088319444877312 NaN NaN 2016-09-14 16:00:49 +0000 <a href="http://twitter.com/download/iphone" r... I can't tap the screen to make the hearts appe... NaN NaN NaN https://twitter.com/dog_rates/status/776088319... 10 10 None None None None None
778 775898661951791106 NaN NaN 2016-09-14 03:27:11 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Like father (doggo), like son (... 7.331095e+17 4.196984e+09 2016-05-19 01:38:16 +0000 https://twitter.com/dog_rates/status/733109485... 12 10 None doggo None pupper None
779 775842724423557120 NaN NaN 2016-09-13 23:44:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Blue. He was having an average day unt... NaN NaN NaN https://twitter.com/dog_rates/status/775842724... 12 10 Blue None None None None
780 775733305207554048 NaN NaN 2016-09-13 16:30:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Anakin. He strives to reach his full d... NaN NaN NaN https://twitter.com/dog_rates/status/775733305... 11 10 Anakin doggo None None None
781 775729183532220416 NaN NaN 2016-09-13 16:13:44 +0000 <a href="http://twitter.com/download/iphone" r... This girl straight up rejected a guy because h... NaN NaN NaN https://twitter.com/dog_rates/status/775729183... 13 10 None None None None None
782 775364825476165632 NaN NaN 2016-09-12 16:05:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Finley. He's an independent doggo stil... NaN NaN NaN https://twitter.com/dog_rates/status/775364825... 11 10 Finley doggo None None None
783 775350846108426240 NaN NaN 2016-09-12 15:10:21 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Maximus. A little rain won't stop him.... NaN NaN NaN https://vine.co/v/ijmv0PD0XXD 12 10 Maximus None None None None
784 775096608509886464 NaN NaN 2016-09-11 22:20:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: After so many requests, this is... 7.403732e+17 4.196984e+09 2016-06-08 02:41:38 +0000 https://twitter.com/dog_rates/status/740373189... 9 11 None None None None None
785 775085132600442880 NaN NaN 2016-09-11 21:34:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He would like a hug. 13/10 som... NaN NaN NaN https://twitter.com/dog_rates/status/775085132... 13 10 Tucker None None None None
786 774757898236878852 NaN NaN 2016-09-10 23:54:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Finley. She's a Beneboop Cumbersplash.... NaN NaN NaN https://twitter.com/dog_rates/status/774757898... 12 10 Finley None None None None
787 774639387460112384 NaN NaN 2016-09-10 16:03:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Sprinkles. He's trapped in light jail.... NaN NaN NaN https://twitter.com/dog_rates/status/774639387... 10 10 Sprinkles None None None None
788 774314403806253056 NaN NaN 2016-09-09 18:31:54 +0000 <a href="http://twitter.com/download/iphone" r... I WAS SENT THE ACTUAL DOG IN THE PROFILE PIC B... NaN NaN NaN https://twitter.com/dog_rates/status/774314403... 14 10 None None None None None
789 773985732834758656 NaN NaN 2016-09-08 20:45:53 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winnie. She just made awkward eye contact... NaN NaN NaN https://twitter.com/dog_rates/status/773985732... 11 10 Winnie None None pupper None
790 773922284943896577 NaN NaN 2016-09-08 16:33:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Heinrich (pronounced "Pat"). He's a Bo... NaN NaN NaN https://twitter.com/dog_rates/status/773922284... 12 10 Heinrich None None None None
791 773704687002451968 NaN NaN 2016-09-08 02:09:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Loki. He knows he's adorable. One ear ... NaN NaN NaN https://twitter.com/dog_rates/status/773704687... 12 10 Loki None None None None
792 773670353721753600 NaN NaN 2016-09-07 23:52:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Shakespeare. He appears to be maximum ... NaN NaN NaN https://twitter.com/dog_rates/status/773670353... 10 10 Shakespeare None None None None
793 773547596996571136 NaN NaN 2016-09-07 15:44:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Chelsea. She forgot how to dog. 11/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/773547596... 11 10 Chelsea None None pupper None
794 773336787167145985 NaN NaN 2016-09-07 01:47:12 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Fizz. She thinks love is a... 7.713808e+17 4.196984e+09 2016-09-01 16:14:48 +0000 https://twitter.com/dog_rates/status/771380798... 11 10 Fizz None None None None
795 773308824254029826 NaN NaN 2016-09-06 23:56:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Bungalo. She uses that face to get wha... NaN NaN NaN https://twitter.com/dog_rates/status/773308824... 12 10 Bungalo None None None None
796 773247561583001600 NaN NaN 2016-09-06 19:52:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Chip. He's a pupholder. Comes with the... NaN NaN NaN https://twitter.com/dog_rates/status/773247561... 10 10 Chip None None None None
797 773191612633579521 NaN NaN 2016-09-06 16:10:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Grey. He's the dogtor in charge of you... NaN NaN NaN https://twitter.com/dog_rates/status/773191612... 12 10 Grey None None None None
798 772877495989305348 NaN NaN 2016-09-05 19:22:09 +0000 <a href="http://twitter.com" rel="nofollow">Tw... You need to watch these two doggos argue throu... NaN NaN NaN https://twitter.com/dog_rates/status/772877495... 11 10 None None None None None
799 772826264096874500 NaN NaN 2016-09-05 15:58:34 +0000 <a href="http://twitter.com/download/iphone" r... Meet Roosevelt. He's preparing for takeoff. Ma... NaN NaN NaN https://twitter.com/dog_rates/status/772826264... 11 10 Roosevelt None None None None
800 772615324260794368 NaN NaN 2016-09-05 02:00:22 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Gromit. He's pupset bec... 7.652221e+17 4.196984e+09 2016-08-15 16:22:20 +0000 https://twitter.com/dog_rates/status/765222098... 10 10 Gromit None None None None
801 772581559778025472 NaN NaN 2016-09-04 23:46:12 +0000 <a href="http://twitter.com/download/iphone" r... Guys this is getting so out of hand. We only r... NaN NaN NaN https://twitter.com/dog_rates/status/772581559... 10 10 a None None None None
802 772193107915964416 NaN NaN 2016-09-03 22:02:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Willem. He's a Penn State pupper. Thin... NaN NaN NaN https://twitter.com/dog_rates/status/772193107... 12 10 Willem None None pupper None
803 772152991789019136 NaN NaN 2016-09-03 19:23:13 +0000 <a href="http://twitter.com/download/iphone" r... Here's a couple rufferees making sure all the ... NaN NaN NaN https://twitter.com/dog_rates/status/772152991... 10 10 None None None None None
804 772117678702071809 NaN NaN 2016-09-03 17:02:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jack. He's a Clemson pup. Appears to be r... NaN NaN NaN https://twitter.com/dog_rates/status/772117678... 12 10 Jack None None None None
805 772114945936949249 NaN NaN 2016-09-03 16:52:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Finn. He's very nervous for the game. ... NaN NaN NaN https://twitter.com/dog_rates/status/772114945... 10 10 Finn None None None None
806 772102971039580160 NaN NaN 2016-09-03 16:04:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's an OU cheerleader. About ... NaN NaN NaN https://twitter.com/dog_rates/status/772102971... 11 10 Penny None None None None
807 771908950375665664 NaN NaN 2016-09-03 03:13:29 +0000 <a href="http://twitter.com/download/iphone" r... Doggo will persevere. 13/10\nhttps://t.co/yOVz... NaN NaN NaN https://twitter.com/yahoonews/status/771905568... 13 10 None doggo None None None
808 771770456517009408 NaN NaN 2016-09-02 18:03:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Davey. He'll have your daughter home b... NaN NaN NaN https://twitter.com/dog_rates/status/771770456... 11 10 Davey None None None None
809 771500966810099713 NaN NaN 2016-09-02 00:12:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Dakota. He's just saying hi. That's al... NaN NaN NaN https://twitter.com/dog_rates/status/771500966... 12 10 Dakota None None None None
810 771380798096281600 NaN NaN 2016-09-01 16:14:48 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fizz. She thinks love is a social constru... NaN NaN NaN https://twitter.com/dog_rates/status/771380798... 11 10 Fizz None None None None
811 771171053431250945 NaN NaN 2016-09-01 02:21:21 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Frankie. He's wearing b... 6.733201e+17 4.196984e+09 2015-12-06 01:56:44 +0000 https://twitter.com/dog_rates/status/673320132... 11 10 Frankie None None None None
812 771136648247640064 NaN NaN 2016-09-01 00:04:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Dixie. She wants to be a ship captain.... NaN NaN NaN https://twitter.com/dog_rates/status/771136648... 11 10 Dixie None None None None
813 771102124360998913 NaN NaN 2016-08-31 21:47:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He works for @TODAYshow. Supe... NaN NaN NaN https://twitter.com/dog_rates/status/771102124... 12 10 Charlie None None None None
814 771014301343748096 NaN NaN 2016-08-31 15:58:28 +0000 <a href="http://twitter.com/download/iphone" r... Another pic without a dog in it? What am I sup... NaN NaN NaN https://twitter.com/dog_rates/status/771014301... 7 10 None None None None None
815 771004394259247104 NaN NaN 2016-08-31 15:19:06 +0000 <a href="http://twitter.com/download/iphone" r... RT @katieornah: @dog_rates learning a lot at c... 7.710021e+17 1.732729e+09 2016-08-31 15:10:07 +0000 https://twitter.com/katieornah/status/77100213... 12 10 None None None pupper None
816 770787852854652928 NaN NaN 2016-08-31 00:58:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Winston. His tongue has gone rogue. Do... NaN NaN NaN https://twitter.com/dog_rates/status/770787852... 10 10 Winston None None None None
817 770772759874076672 NaN NaN 2016-08-30 23:58:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Sebastian. He's super h*ckin fluffy. T... NaN NaN NaN https://twitter.com/dog_rates/status/770772759... 11 10 Sebastian None None None None
818 770743923962707968 NaN NaN 2016-08-30 22:04:05 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Here's a doggo blowing bubbles.... 7.392382e+17 4.196984e+09 2016-06-04 23:31:25 +0000 https://twitter.com/dog_rates/status/739238157... 13 10 None doggo None None None
819 770655142660169732 NaN NaN 2016-08-30 16:11:18 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Pls stop sending in non-can... NaN NaN NaN https://twitter.com/dog_rates/status/770655142... 11 10 very None None None None
820 770414278348247044 NaN NaN 2016-08-30 00:14:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Al Cabone. He's a gangsta puppa. Rather h... NaN NaN NaN https://twitter.com/dog_rates/status/770414278... 11 10 Al None None None None
821 770293558247038976 NaN NaN 2016-08-29 16:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Jackson. There's nothing abnormal abou... NaN NaN NaN https://twitter.com/dog_rates/status/770293558... 10 10 Jackson None None None None
822 770093767776997377 NaN NaN 2016-08-29 03:00:36 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is just downright precious... 7.410673e+17 4.196984e+09 2016-06-10 00:39:48 +0000 https://twitter.com/dog_rates/status/741067306... 12 10 just doggo None pupper None
823 770069151037685760 NaN NaN 2016-08-29 01:22:47 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Carbon. This is his first time sw... NaN NaN NaN https://twitter.com/dog_rates/status/770069151... 10 10 Carbon None None None None
824 769940425801170949 NaN NaN 2016-08-28 16:51:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Klein. These pics were taken a month a... NaN NaN NaN https://twitter.com/dog_rates/status/769940425... 12 10 Klein None None None None
825 769695466921623552 NaN NaN 2016-08-28 00:37:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Titan. He's trying to make friends. Of... NaN NaN NaN https://twitter.com/dog_rates/status/769695466... 13 10 Titan None None None None
826 769335591808995329 NaN NaN 2016-08-27 00:47:53 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Ever seen a dog pet another dog... 7.069045e+17 4.196984e+09 2016-03-07 18:09:06 +0000 https://vine.co/v/iXQAm5Lrgrh,https://vine.co/... 13 10 None None None None None
827 769212283578875904 NaN NaN 2016-08-26 16:37:54 +0000 <a href="http://twitter.com/download/iphone" r... This is DonDon. He's way up but doesn't feel b... NaN NaN NaN https://twitter.com/dog_rates/status/769212283... 12 10 DonDon None None None None
828 768970937022709760 NaN NaN 2016-08-26 00:38:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Kirby. His bowl weighs more than him. ... NaN NaN NaN https://twitter.com/dog_rates/status/768970937... 12 10 Kirby None None None None
829 768909767477751808 NaN NaN 2016-08-25 20:35:48 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: When it's Janet from accounting... 7.001438e+17 4.196984e+09 2016-02-18 02:24:13 +0000 https://twitter.com/dog_rates/status/700143752... 10 10 None None None pupper None
830 768855141948723200 NaN NaN 2016-08-25 16:58:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Jesse. He really wants a belly rub. Wi... NaN NaN NaN https://twitter.com/dog_rates/status/768855141... 11 10 Jesse None None None None
831 768609597686943744 NaN NaN 2016-08-25 00:43:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Lou. His sweater is too small and he a... NaN NaN NaN https://twitter.com/dog_rates/status/768609597... 10 10 Lou None None None None
832 768596291618299904 NaN NaN 2016-08-24 23:50:10 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Oakley and Charlie. They're convi... NaN NaN NaN https://twitter.com/dog_rates/status/768596291... 12 10 Oakley None None None None
833 768554158521745409 NaN NaN 2016-08-24 21:02:45 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Nollie. She's waving at... 7.399792e+17 4.196984e+09 2016-06-07 00:36:02 +0000 https://twitter.com/dog_rates/status/739979191... 12 10 Nollie None None None None
834 768473857036525572 NaN NaN 2016-08-24 15:43:39 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chevy. He had a late breakfast and now ha... NaN NaN NaN https://twitter.com/dog_rates/status/768473857... 11 10 Chevy None None None None
835 768193404517830656 NaN NaN 2016-08-23 21:09:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Gerald. He's a fairly exotic doggo. Floof... NaN NaN NaN https://twitter.com/dog_rates/status/768193404... 8 10 Gerald doggo None None None
836 767884188863397888 NaN NaN 2016-08-23 00:40:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Tito. He's on the lookout. Nobody know... NaN NaN NaN https://twitter.com/dog_rates/status/767884188... 10 10 Tito None None None None
837 767754930266464257 NaN NaN 2016-08-22 16:06:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Philbert. His toilet broke and he does... NaN NaN NaN https://twitter.com/dog_rates/status/767754930... 11 10 Philbert None None None None
838 767500508068192258 NaN NaN 2016-08-21 23:15:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Louie. He's making quite a h*ckin mess... NaN NaN NaN https://twitter.com/dog_rates/status/767500508... 12 10 Louie None None None None
839 767191397493538821 NaN NaN 2016-08-21 02:47:37 +0000 <a href="http://twitter.com/download/iphone" r... I don't know any of the backstory behind this ... NaN NaN NaN https://twitter.com/dog_rates/status/767191397... 13 10 None doggo None None None
840 767122157629476866 NaN NaN 2016-08-20 22:12:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Rupert. You betrayed him with bath tim... NaN NaN NaN https://twitter.com/dog_rates/status/767122157... 13 10 Rupert None None None None
841 766864461642756096 NaN NaN 2016-08-20 05:08:29 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: We only rate dogs... this is a ... 7.599238e+17 4.196984e+09 2016-08-01 01:28:46 +0000 https://twitter.com/dog_rates/status/759923798... 10 10 None None None None None
842 766793450729734144 NaN NaN 2016-08-20 00:26:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Rufus. He just missed out on the 100m ... NaN NaN NaN https://twitter.com/dog_rates/status/766793450... 10 10 Rufus None None None None
843 766714921925144576 7.667118e+17 4.196984e+09 2016-08-19 19:14:16 +0000 <a href="http://twitter.com/download/iphone" r... His name is Charley and he already has a new s... NaN NaN NaN NaN 13 10 None None None None None
844 766693177336135680 NaN NaN 2016-08-19 17:47:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Brudge. He's a Doberdog. Going to be h... NaN NaN NaN https://twitter.com/dog_rates/status/766693177... 11 10 Brudge None None None None
845 766423258543644672 NaN NaN 2016-08-18 23:55:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Shadoe. Her tongue flies out of her mo... NaN NaN NaN https://twitter.com/dog_rates/status/766423258... 9 10 Shadoe None None None None
846 766313316352462849 NaN NaN 2016-08-18 16:38:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar. He has legendary eyebrows and h... NaN NaN NaN https://twitter.com/dog_rates/status/766313316... 12 10 Oscar None None None None
847 766078092750233600 NaN NaN 2016-08-18 01:03:45 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Colby. He's currently r... 7.258423e+17 4.196984e+09 2016-04-29 00:21:01 +0000 https://twitter.com/dog_rates/status/725842289... 12 10 Colby None None None None
848 766069199026450432 NaN NaN 2016-08-18 00:28:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Juno. She can see your future. 12/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/766069199... 12 10 Juno None None None None
849 766008592277377025 NaN NaN 2016-08-17 20:27:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Angel. She stole the @ShopWeRateDogs s... NaN NaN NaN https://twitter.com/dog_rates/status/766008592... 11 10 Angel None None None None
850 765719909049503744 NaN NaN 2016-08-17 01:20:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Brat. He has a hard time being ferocio... NaN NaN NaN https://twitter.com/dog_rates/status/765719909... 12 10 Brat None None None None
851 765669560888528897 NaN NaN 2016-08-16 22:00:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Tove. She's a Balsamic Poinsetter. Sur... NaN NaN NaN https://twitter.com/dog_rates/status/765669560... 12 10 Tove None None None None
852 765395769549590528 NaN NaN 2016-08-16 03:52:26 +0000 <a href="http://twitter.com/download/iphone" r... This is my dog. Her name is Zoey. She knows I'... NaN NaN NaN https://twitter.com/dog_rates/status/765395769... 13 10 my None None None None
853 765371061932261376 NaN NaN 2016-08-16 02:14:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Louie. He's had a long day. Did a lot ... NaN NaN NaN https://twitter.com/dog_rates/status/765371061... 11 10 Louie None None pupper None
854 765222098633691136 NaN NaN 2016-08-15 16:22:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Gromit. He's pupset because there's no... NaN NaN NaN https://twitter.com/dog_rates/status/765222098... 10 10 Gromit None None None None
855 764857477905154048 NaN NaN 2016-08-14 16:13:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Aubie. He has paws for days. Nibbling ... NaN NaN NaN https://twitter.com/dog_rates/status/764857477... 12 10 Aubie None None None None
856 764259802650378240 NaN NaN 2016-08-13 00:38:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Kota and her son Benedict. She doesn't... NaN NaN NaN https://twitter.com/dog_rates/status/764259802... 10 10 Kota None None None None
857 763956972077010945 7.638652e+17 1.584641e+07 2016-08-12 04:35:10 +0000 <a href="http://twitter.com/download/iphone" r... @TheEllenShow I'm not sure if you know this bu... NaN NaN NaN NaN 12 10 None doggo None None None
858 763837565564780549 NaN NaN 2016-08-11 20:40:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's touching a butt. Couldn't ... NaN NaN NaN https://twitter.com/dog_rates/status/763837565... 11 10 Alfie None None None None
859 763183847194451968 NaN NaN 2016-08-10 01:23:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Clark. He collects teddy bears. It's a... NaN NaN NaN https://twitter.com/dog_rates/status/763183847... 8 10 Clark None None None None
860 763167063695355904 NaN NaN 2016-08-10 00:16:21 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Meet Eve. She's a raging alcoho... 6.732953e+17 4.196984e+09 2015-12-06 00:17:55 +0000 https://twitter.com/dog_rates/status/673295268... 8 10 Eve None None pupper None
861 763103485927849985 NaN NaN 2016-08-09 20:03:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Belle. She's a Butterflop Hufflepoof. ... NaN NaN NaN https://twitter.com/dog_rates/status/763103485... 10 10 Belle None None None None
862 762699858130116608 NaN NaN 2016-08-08 17:19:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Leela. She's a Fetty Woof. Lost eye wh... NaN NaN NaN https://twitter.com/dog_rates/status/762699858... 11 10 Leela None None None None
863 762471784394268675 NaN NaN 2016-08-08 02:13:34 +0000 <a href="http://twitter.com/download/iphone" r... Meet Glenn. Being in public scares him. Fright... NaN NaN NaN https://twitter.com/dog_rates/status/762471784... 12 10 Glenn None None None None
864 762464539388485633 NaN NaN 2016-08-08 01:44:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Buddy. His father was a bear and his m... NaN NaN NaN https://twitter.com/dog_rates/status/762464539... 12 10 Buddy None None None None
865 762316489655476224 NaN NaN 2016-08-07 15:56:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. He specializes in mid-air freez... NaN NaN NaN https://twitter.com/dog_rates/status/762316489... 11 10 Scout None None None None
866 762035686371364864 NaN NaN 2016-08-06 21:20:40 +0000 <a href="http://twitter.com/download/iphone" r... This left me speechless. 14/10 heckin heroic a... NaN NaN NaN https://twitter.com/dog_rates/status/762035686... 14 10 None None None None None
867 761976711479193600 NaN NaN 2016-08-06 17:26:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Shelby. She finds stuff to put on her ... NaN NaN NaN https://twitter.com/dog_rates/status/761976711... 12 10 Shelby None None None None
868 761750502866649088 NaN NaN 2016-08-06 02:27:27 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: "Tristan do not speak to me wit... 6.853251e+17 4.196984e+09 2016-01-08 05:00:14 +0000 https://twitter.com/dog_rates/status/685325112... 10 10 None None None None None
869 761745352076779520 NaN NaN 2016-08-06 02:06:59 +0000 <a href="http://twitter.com/download/iphone" r... Guys.. we only rate dogs. Pls don't send any m... NaN NaN NaN https://twitter.com/dog_rates/status/761745352... 11 10 None None None None None
870 761672994376806400 NaN NaN 2016-08-05 21:19:27 +0000 <a href="http://twitter.com/download/iphone" r... Ohboyohboyohboyohboyohboyohboyohboyohboyohboyo... NaN NaN NaN https://twitter.com/dog_rates/status/761672994... 10 10 None None None None None
871 761599872357261312 NaN NaN 2016-08-05 16:28:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Sephie. According to this picture, she... NaN NaN NaN https://twitter.com/dog_rates/status/761599872... 11 10 Sephie None None None None
872 761371037149827077 NaN NaN 2016-08-05 01:19:35 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Oh. My. God. 13/10 magical af h... 7.116948e+17 4.196984e+09 2016-03-20 23:23:54 +0000 https://twitter.com/dog_rates/status/711694788... 13 10 None None None None None
873 761334018830917632 NaN NaN 2016-08-04 22:52:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruce. I really want to hear the joke ... NaN NaN NaN https://twitter.com/dog_rates/status/761334018... 10 10 Bruce None None None None
874 761292947749015552 NaN NaN 2016-08-04 20:09:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Bonaparte. He's pupset because it's cloud... NaN NaN NaN https://twitter.com/dog_rates/status/761292947... 11 10 Bonaparte None None None None
875 761227390836215808 NaN NaN 2016-08-04 15:48:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Albert. He just found out that bees ar... NaN NaN NaN https://twitter.com/dog_rates/status/761227390... 10 10 Albert None None None None
876 761004547850530816 NaN NaN 2016-08-04 01:03:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Bo and Ty. Bo eats paper and Ty felt l... NaN NaN NaN https://twitter.com/dog_rates/status/761004547... 11 10 Bo None None None None
877 760893934457552897 NaN NaN 2016-08-03 17:43:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Wishes. He has the day off. Daily stru... NaN NaN NaN https://twitter.com/dog_rates/status/760893934... 11 10 Wishes doggo None None None
878 760656994973933572 NaN NaN 2016-08-03 02:02:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Rose. Her face is stuck like that. 11/... NaN NaN NaN https://twitter.com/dog_rates/status/760656994... 11 10 Rose None None None None
879 760641137271070720 NaN NaN 2016-08-03 00:59:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Theo. He can walk on water. Still comi... NaN NaN NaN https://twitter.com/dog_rates/status/760641137... 12 10 Theo None None None None
880 760539183865880579 NaN NaN 2016-08-02 18:14:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Atlas. Swinging is his passion. 12/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/760539183... 12 10 Atlas None None None None
881 760521673607086080 NaN NaN 2016-08-02 17:04:31 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Doggo want what doggo cannot have. Temptation ... NaN NaN NaN https://vine.co/v/5ApKetxzmTB 12 10 None doggo None None None
882 760290219849637889 NaN NaN 2016-08-02 01:44:48 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Rocco. He's doing his best. 13/10 some... NaN NaN NaN https://twitter.com/dog_rates/status/760290219... 13 10 Rocco None None None None
883 760252756032651264 NaN NaN 2016-08-01 23:15:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Fido. He can tell the weather. Not goo... NaN NaN NaN https://twitter.com/dog_rates/status/760252756... 4 10 Fido None None None None
884 760190180481531904 NaN NaN 2016-08-01 19:07:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sadie. She's addicted to balloons. It's t... NaN NaN NaN https://twitter.com/dog_rates/status/760190180... 10 10 Sadie None None None None
885 760153949710192640 NaN NaN 2016-08-01 16:43:19 +0000 <a href="http://twitter.com/download/iphone" r... RT @hownottodraw: The story/person behind @dog... 7.601538e+17 1.950368e+08 2016-08-01 16:42:51 +0000 https://weratedogs.com/pages/about-us,https://... 11 10 None None None None None
886 759943073749200896 NaN NaN 2016-08-01 02:45:22 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Here's a wicked fast pupper. 12/10 camera coul... NaN NaN NaN https://vine.co/v/5AJm5pq7Kav 12 10 None None None pupper None
887 759923798737051648 NaN NaN 2016-08-01 01:28:46 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs... this is a Taiwanese Guide... NaN NaN NaN https://twitter.com/dog_rates/status/759923798... 10 10 None None None None None
888 759846353224826880 NaN NaN 2016-07-31 20:21:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Kirby. He's a Beneblip Cumberpat. Pret... NaN NaN NaN https://twitter.com/dog_rates/status/759846353... 11 10 Kirby None None None None
889 759793422261743616 NaN NaN 2016-07-31 16:50:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Maggie &amp; Lila. Maggie is the doggo, L... NaN NaN NaN https://twitter.com/dog_rates/status/759793422... 12 10 Maggie doggo None pupper None
890 759566828574212096 NaN NaN 2016-07-31 01:50:18 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This... is a Tyrannosaurus rex.... 7.395441e+17 4.196984e+09 2016-06-05 19:47:03 +0000 https://twitter.com/dog_rates/status/739544079... 10 10 None None None None None
891 759557299618865152 NaN NaN 2016-07-31 01:12:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Emma. She can't believe her last guess... NaN NaN NaN https://twitter.com/dog_rates/status/759557299... 10 10 Emma None None None None
892 759447681597108224 NaN NaN 2016-07-30 17:56:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Oakley. He has no idea what happened h... NaN NaN NaN https://twitter.com/dog_rates/status/759447681... 11 10 Oakley None None None None
893 759446261539934208 NaN NaN 2016-07-30 17:51:13 +0000 <a href="http://twitter.com/download/iphone" r... No no no this is all wrong. The Walmart had to... NaN NaN NaN https://twitter.com/wsaznews/status/7591675587... 10 10 None None None None None
894 759197388317847553 NaN NaN 2016-07-30 01:22:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Luna. She's just heckin precious af I ... NaN NaN NaN https://twitter.com/dog_rates/status/759197388... 12 10 Luna None None None None
895 759159934323924993 NaN NaN 2016-07-29 22:53:27 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: AT DAWN...\nWE RIDE\n\n11/10 ht... 6.703191e+17 4.196984e+09 2015-11-27 19:11:49 +0000 https://twitter.com/dog_rates/status/670319130... 11 10 None None None None None
896 759099523532779520 NaN NaN 2016-07-29 18:53:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Toby. He has a drinking problem. Inflatab... NaN NaN NaN https://twitter.com/dog_rates/status/759099523... 7 10 Toby None None None None
897 759047813560868866 NaN NaN 2016-07-29 15:27:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Spencer. He's part of the Queen's Guar... NaN NaN NaN https://twitter.com/dog_rates/status/759047813... 11 10 Spencer None None None None
898 758854675097526272 NaN NaN 2016-07-29 02:40:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Lilli Bee &amp; Honey Bear. Unfortunat... NaN NaN NaN https://twitter.com/dog_rates/status/758854675... 11 10 Lilli None None None None
899 758828659922702336 NaN NaN 2016-07-29 00:57:05 +0000 <a href="http://twitter.com/download/iphone" r... This doggo is just waiting for someone to be p... NaN NaN NaN https://twitter.com/dog_rates/status/758828659... 13 10 None doggo None None None
900 758740312047005698 NaN NaN 2016-07-28 19:06:01 +0000 <a href="http://twitter.com/download/iphone" r... Meet Boston. He's worried because his tongue w... NaN NaN NaN https://twitter.com/dog_rates/status/758740312... 12 10 Boston None None None None
901 758474966123810816 NaN NaN 2016-07-28 01:31:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Brandonald. He accidentally opened the... NaN NaN NaN https://twitter.com/dog_rates/status/758474966... 11 10 Brandonald None None None None
902 758467244762497024 NaN NaN 2016-07-28 01:00:57 +0000 <a href="http://twitter.com/download/iphone" r... Why does this never happen at my front door...... NaN NaN NaN https://twitter.com/dog_rates/status/758467244... 165 150 None None None None None
903 758405701903519748 NaN NaN 2016-07-27 20:56:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Odie. He falls asleep wherever he want... NaN NaN NaN https://twitter.com/dog_rates/status/758405701... 10 10 Odie None None None None
904 758355060040593408 NaN NaN 2016-07-27 17:35:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Corey. He's a Portobello Corgicool. Tr... NaN NaN NaN https://twitter.com/dog_rates/status/758355060... 11 10 Corey None None None None
905 758099635764359168 NaN NaN 2016-07-27 00:40:12 +0000 <a href="http://vine.co" rel="nofollow">Vine -... In case you haven't seen the most dramatic sne... NaN NaN NaN https://vine.co/v/hQJbaj1VpIz 13 10 None None None None None
906 758041019896193024 NaN NaN 2016-07-26 20:47:17 +0000 <a href="http://twitter.com/download/iphone" r... Teagan reads entire books in store so they're ... NaN NaN NaN https://twitter.com/dog_rates/status/758041019... 9 10 None None None None None
907 757741869644341248 NaN NaN 2016-07-26 00:58:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Leonard. He hides in bushes to escape ... NaN NaN NaN https://twitter.com/dog_rates/status/757741869... 10 10 Leonard None None None None
908 757729163776290825 NaN NaN 2016-07-26 00:08:05 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Chompsky. He lives up t... 6.790626e+17 4.196984e+09 2015-12-21 22:15:18 +0000 https://twitter.com/dog_rates/status/679062614... 11 10 Chompsky None None None None
909 757725642876129280 NaN NaN 2016-07-25 23:54:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Beckham. He fell asleep at the wheel. ... NaN NaN NaN https://twitter.com/dog_rates/status/757725642... 11 10 Beckham None None None None
910 757611664640446465 NaN NaN 2016-07-25 16:21:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. He tries to come across as fei... NaN NaN NaN https://twitter.com/dog_rates/status/757611664... 12 10 Cooper None None None None
911 757597904299253760 NaN NaN 2016-07-25 15:26:30 +0000 <a href="http://twitter.com/download/iphone" r... RT @jon_hill987: @dog_rates There is a cunning... 7.575971e+17 2.804798e+08 2016-07-25 15:23:28 +0000 https://twitter.com/jon_hill987/status/7575971... 11 10 None None None pupper None
912 757596066325864448 NaN NaN 2016-07-25 15:19:12 +0000 <a href="http://twitter.com/download/iphone" r... Here's another picture without a dog in it. Id... NaN NaN NaN https://twitter.com/dog_rates/status/757596066... 4 10 None None None None None
913 757400162377592832 NaN NaN 2016-07-25 02:20:45 +0000 <a href="http://twitter.com/download/iphone" r... She walks herself up and down the train to be ... NaN NaN NaN https://twitter.com/dog_rates/status/757400162... 13 10 None None None None None
914 757393109802180609 NaN NaN 2016-07-25 01:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo completely oblivious to the dou... NaN NaN NaN https://twitter.com/dog_rates/status/757393109... 10 10 None doggo None None None
915 757354760399941633 NaN NaN 2016-07-24 23:20:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Devón (pronounced "Eric"). He forgot h... NaN NaN NaN https://twitter.com/dog_rates/status/757354760... 8 10 Devón None None None None
916 756998049151549440 NaN NaN 2016-07-23 23:42:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. He's an English Creamschnitzel... NaN NaN NaN https://twitter.com/dog_rates/status/756998049... 11 10 Oliver None None None None
917 756939218950160384 NaN NaN 2016-07-23 19:49:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Jax. He is a majestic mountain pupper.... NaN NaN NaN https://twitter.com/dog_rates/status/756939218... 12 10 Jax None None pupper None
918 756651752796094464 NaN NaN 2016-07-23 00:46:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Gert. He just wants you to be happy. 1... NaN NaN NaN https://twitter.com/dog_rates/status/756651752... 11 10 Gert None None None None
919 756526248105566208 NaN NaN 2016-07-22 16:28:07 +0000 <a href="http://twitter.com/download/iphone" r... All hail sky doggo. 13/10 would jump super hig... NaN NaN NaN https://twitter.com/dog_rates/status/756526248... 13 10 None doggo None None None
920 756303284449767430 NaN NaN 2016-07-22 01:42:09 +0000 <a href="http://twitter.com/download/iphone" r... Pwease accept dis rose on behalf of dog. 11/10... NaN NaN NaN https://twitter.com/dog_rates/status/756303284... 11 10 None None None None None
921 756288534030475264 NaN NaN 2016-07-22 00:43:32 +0000 <a href="http://twitter.com/download/iphone" r... Here's a heartwarming scene of a single father... NaN NaN NaN https://twitter.com/dog_rates/status/756288534... 12 10 None None None None None
922 756275833623502848 NaN NaN 2016-07-21 23:53:04 +0000 <a href="http://twitter.com/download/iphone" r... When ur older siblings get to play in the deep... NaN NaN NaN https://twitter.com/dog_rates/status/756275833... 10 10 None None None None puppo
923 755955933503782912 NaN NaN 2016-07-21 02:41:54 +0000 <a href="http://twitter.com/download/iphone" r... Here's a frustrated pupper attempting to escap... NaN NaN NaN https://twitter.com/dog_rates/status/755955933... 12 10 None None None pupper None
924 755206590534418437 NaN NaN 2016-07-19 01:04:16 +0000 <a href="http://twitter.com/download/iphone" r... This is one of the most inspirational stories ... NaN NaN NaN https://twitter.com/dog_rates/status/755206590... 14 10 one doggo None None None
925 755110668769038337 NaN NaN 2016-07-18 18:43:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Watson. He trust falls on command. 13/... NaN NaN NaN https://twitter.com/dog_rates/status/755110668... 13 10 Watson None None None None
926 754874841593970688 NaN NaN 2016-07-18 03:06:01 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Rubio. He has too much ... 6.791584e+17 4.196984e+09 2015-12-22 04:35:49 +0000 https://twitter.com/dog_rates/status/679158373... 11 10 Rubio None None None None
927 754856583969079297 NaN NaN 2016-07-18 01:53:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Winnie. She's not a fan of the fast mo... NaN NaN NaN https://twitter.com/dog_rates/status/754856583... 11 10 Winnie None None None None
928 754747087846248448 NaN NaN 2016-07-17 18:38:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Keith. He's pursuing a more 2D lifesty... NaN NaN NaN https://twitter.com/dog_rates/status/754747087... 12 10 Keith None None None None
929 754482103782404096 NaN NaN 2016-07-17 01:05:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Milo. He's currently plotting his reve... NaN NaN NaN https://twitter.com/dog_rates/status/754482103... 10 10 Milo None None None None
930 754449512966619136 NaN NaN 2016-07-16 22:55:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Dex. He can see into your past and fut... NaN NaN NaN https://twitter.com/dog_rates/status/754449512... 11 10 Dex None None None None
931 754120377874386944 NaN NaN 2016-07-16 01:08:03 +0000 <a href="http://twitter.com/download/iphone" r... When you hear your owner say they need to hatc... NaN NaN NaN https://twitter.com/dog_rates/status/754120377... 10 10 None None None None None
932 754011816964026368 NaN NaN 2016-07-15 17:56:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He pouts until he gets to go ... NaN NaN NaN https://twitter.com/dog_rates/status/754011816... 12 10 Charlie None None None None
933 753655901052166144 NaN NaN 2016-07-14 18:22:23 +0000 <a href="http://twitter.com/download/iphone" r... "The dogtor is in hahahaha no but seriously I'... NaN NaN NaN https://twitter.com/dog_rates/status/753655901... 10 10 None None None None None
934 753420520834629632 NaN NaN 2016-07-14 02:47:04 +0000 <a href="http://twitter.com/download/iphone" r... Here we are witnessing an isolated squad of bo... NaN NaN NaN https://twitter.com/dog_rates/status/753420520... 11 10 None None None None None
935 753398408988139520 NaN NaN 2016-07-14 01:19:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. Her batteries are low. 12/10 pr... NaN NaN NaN https://twitter.com/dog_rates/status/753398408... 12 10 Scout None None None None
936 753375668877008896 NaN NaN 2016-07-13 23:48:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Hank. He's mischievous af. Doesn't eve... NaN NaN NaN https://twitter.com/dog_rates/status/753375668... 8 10 Hank None None None None
937 753298634498793472 NaN NaN 2016-07-13 18:42:44 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Carly. She's actually 2... 6.815232e+17 4.196984e+09 2015-12-28 17:12:42 +0000 https://twitter.com/dog_rates/status/681523177... 12 10 Carly None None None None
938 753294487569522689 NaN NaN 2016-07-13 18:26:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Ace. He's a window washer. One of the ... NaN NaN NaN https://twitter.com/dog_rates/status/753294487... 11 10 Ace None None None None
939 753039830821511168 NaN NaN 2016-07-13 01:34:21 +0000 <a href="http://vine.co" rel="nofollow">Vine -... So this just changed my life. 13/10 please enj... NaN NaN NaN https://vine.co/v/5W2Dg3XPX7a 13 10 None None None None None
940 753026973505581056 NaN NaN 2016-07-13 00:43:15 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Tayzie. She's a Barbadian Bugaboo... NaN NaN NaN https://twitter.com/dog_rates/status/753026973... 10 10 Tayzie None None None None
941 752932432744185856 NaN NaN 2016-07-12 18:27:35 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Carl. He's very powerful. 12/10 don't ... NaN NaN NaN https://vine.co/v/OEppMFbejFz 12 10 Carl None None None None
942 752917284578922496 NaN NaN 2016-07-12 17:27:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Grizzie. She's a semi-submerged Bahrai... NaN NaN NaN https://twitter.com/dog_rates/status/752917284... 11 10 Grizzie None None None None
943 752701944171524096 NaN NaN 2016-07-12 03:11:42 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: HEY PUP WHAT'S THE PART OF THE ... 6.835159e+17 4.196984e+09 2016-01-03 05:11:12 +0000 https://vine.co/v/ibvnzrauFuV,https://vine.co/... 11 10 None None None None None
944 752682090207055872 NaN NaN 2016-07-12 01:52:49 +0000 <a href="http://twitter.com/download/iphone" r... Nothing better than a doggo and a sunset. 10/1... NaN NaN NaN https://twitter.com/dog_rates/status/752682090... 10 10 None doggo None None None
945 752660715232722944 NaN NaN 2016-07-12 00:27:52 +0000 <a href="http://twitter.com/download/iphone" r... Hooman used Pokeball\n*wiggle*\n*wiggle*\nDogg... NaN NaN NaN https://twitter.com/dog_rates/status/752660715... 10 10 None doggo None None None
946 752568224206688256 NaN NaN 2016-07-11 18:20:21 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Here are three doggos completely misjudging an... NaN NaN NaN https://vine.co/v/5W0bdhEUUVT 9 10 None None None None None
947 752519690950500352 NaN NaN 2016-07-11 15:07:30 +0000 <a href="http://twitter.com/download/iphone" r... Hopefully this puppo on a swing will help get ... NaN NaN NaN https://twitter.com/dog_rates/status/752519690... 11 10 None None None None puppo
948 752334515931054080 NaN NaN 2016-07-11 02:51:40 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo trying to catch some fish. 8/10... NaN NaN NaN https://twitter.com/dog_rates/status/752334515... 8 10 None doggo None None None
949 752309394570878976 NaN NaN 2016-07-11 01:11:51 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Everyone needs to watch this. 1... 6.753544e+17 4.196984e+09 2015-12-11 16:40:19 +0000 https://twitter.com/dog_rates/status/675354435... 13 10 None None None None None
950 752173152931807232 NaN NaN 2016-07-10 16:10:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Brody. He's a lifeguard. Always prepar... NaN NaN NaN https://twitter.com/dog_rates/status/752173152... 12 10 Brody None None None None
951 751950017322246144 NaN NaN 2016-07-10 01:23:49 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Lola. She's a surfing pupper. 13/10 ma... NaN NaN NaN https://vine.co/v/5WrjaYAMvMO 13 10 Lola None None pupper None
952 751937170840121344 NaN NaN 2016-07-10 00:32:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruby. Her ice cube is melting. She doe... NaN NaN NaN https://twitter.com/dog_rates/status/751937170... 11 10 Ruby None None None None
953 751830394383790080 NaN NaN 2016-07-09 17:28:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He's very camera shy. 12/10 wo... NaN NaN NaN https://twitter.com/dog_rates/status/751830394... 12 10 Tucker None None None None
954 751793661361422336 NaN NaN 2016-07-09 15:02:31 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Fred. He's having one heck of a summer... NaN NaN NaN https://vine.co/v/5W5YHdTJvaV 11 10 Fred None None None None
955 751598357617971201 NaN NaN 2016-07-09 02:06:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Toby. A cat got his tongue. 13/10 ador... NaN NaN NaN https://twitter.com/dog_rates/status/751598357... 13 10 Toby None None None None
956 751583847268179968 NaN NaN 2016-07-09 01:08:47 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending it pictures that don't eve... NaN NaN NaN https://twitter.com/dog_rates/status/751583847... 5 10 None doggo None pupper None
957 751538714308972544 NaN NaN 2016-07-08 22:09:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Max. She has one ear that's always sli... NaN NaN NaN https://twitter.com/dog_rates/status/751538714... 10 10 Max None None None None
958 751456908746354688 NaN NaN 2016-07-08 16:44:23 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper that's very hungry but too laz... NaN NaN NaN https://twitter.com/dog_rates/status/751456908... 12 10 None None None pupper None
959 751251247299190784 NaN NaN 2016-07-08 03:07:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Gilbert. He's being chased by a battal... NaN NaN NaN https://twitter.com/dog_rates/status/751251247... 10 10 Gilbert None None None None
960 751205363882532864 NaN NaN 2016-07-08 00:04:50 +0000 <a href="http://twitter.com/download/iphone" r... "This photographer took pics of her best frien... NaN NaN NaN https://twitter.com/dog_rates/status/751205363... 12 10 None None None None None
961 751132876104687617 NaN NaN 2016-07-07 19:16:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. He's just so damn happy. 10/10... NaN NaN NaN https://twitter.com/dog_rates/status/751132876... 10 10 Cooper None None None puppo
962 750868782890057730 NaN NaN 2016-07-07 01:47:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Milo. He hauled ass until he ran out of t... NaN NaN NaN https://twitter.com/dog_rates/status/750868782... 11 10 Milo None None pupper None
963 750719632563142656 NaN NaN 2016-07-06 15:54:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Meyer. He has to hold somebody's hand ... NaN NaN NaN https://twitter.com/dog_rates/status/750719632... 12 10 Meyer None None None None
964 750506206503038976 NaN NaN 2016-07-06 01:46:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Malcolm. He's absolutely terrified of ... NaN NaN NaN https://twitter.com/dog_rates/status/750506206... 8 10 Malcolm None None pupper None
965 750429297815552001 NaN NaN 2016-07-05 20:41:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Arnie. He's a Nova Scotian Fridge Floo... NaN NaN NaN https://twitter.com/dog_rates/status/750429297... 12 10 Arnie None None None None
966 750383411068534784 NaN NaN 2016-07-05 17:38:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoe. She was trying to stealthily take... NaN NaN NaN https://twitter.com/dog_rates/status/750383411... 9 10 Zoe None None pupper None
967 750381685133418496 7.501805e+17 4.717297e+09 2016-07-05 17:31:49 +0000 <a href="http://twitter.com/download/iphone" r... 13/10 such a good doggo\n@spaghemily NaN NaN NaN NaN 13 10 None doggo None None None
968 750147208377409536 NaN NaN 2016-07-05 02:00:06 +0000 <a href="http://twitter.com/download/iphone" r... And finally, happy 4th of July from the squad ... NaN NaN NaN https://twitter.com/dog_rates/status/750147208... 13 10 None None None None None
969 750132105863102464 NaN NaN 2016-07-05 01:00:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Stewie. He will roundhouse kick anyone... NaN NaN NaN https://twitter.com/dog_rates/status/750132105... 11 10 Stewie None None None None
970 750117059602808832 NaN NaN 2016-07-05 00:00:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Calvin. He just loves America so much.... NaN NaN NaN https://twitter.com/dog_rates/status/750117059... 10 10 Calvin None None None None
971 750101899009982464 NaN NaN 2016-07-04 23:00:03 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lilah. She agreed on one quick pic. Now s... NaN NaN NaN https://twitter.com/dog_rates/status/750101899... 11 10 Lilah None None None None
972 750086836815486976 NaN NaN 2016-07-04 22:00:12 +0000 <a href="https://about.twitter.com/products/tw... This is Spanky. He was a member of the 2002 US... NaN NaN NaN https://twitter.com/dog_rates/status/750086836... 12 10 Spanky None None None None
973 750071704093859840 NaN NaN 2016-07-04 21:00:04 +0000 <a href="http://twitter.com/download/iphone" r... Pause your cookout and admire this pupper's ni... NaN NaN NaN https://twitter.com/dog_rates/status/750071704... 10 10 None None None pupper None
974 750056684286914561 NaN NaN 2016-07-04 20:00:23 +0000 <a href="https://about.twitter.com/products/tw... This is Jameson. He had a few too many in the ... NaN NaN NaN https://twitter.com/dog_rates/status/750056684... 11 10 Jameson None None None None
975 750041628174217216 NaN NaN 2016-07-04 19:00:33 +0000 <a href="https://about.twitter.com/products/tw... This is Beau. He's trying to keep his daddy fr... NaN NaN NaN https://twitter.com/dog_rates/status/750041628... 13 10 Beau None None None None
976 750026558547456000 NaN NaN 2016-07-04 18:00:41 +0000 <a href="https://about.twitter.com/products/tw... Meet Jax &amp; Jil. Jil is yelling the pledge ... NaN NaN NaN https://twitter.com/dog_rates/status/750026558... 10 10 Jax None None None None
977 750011400160841729 NaN NaN 2016-07-04 17:00:26 +0000 <a href="https://about.twitter.com/products/tw... Meet Piper. She's an airport doggo. Please ret... NaN NaN NaN https://twitter.com/dog_rates/status/750011400... 11 10 Piper doggo None None None
978 749996283729883136 NaN NaN 2016-07-04 16:00:22 +0000 <a href="https://about.twitter.com/products/tw... This is Bo. He emanates happiness. 12/10 I cou... NaN NaN NaN https://twitter.com/dog_rates/status/749996283... 12 10 Bo None None None None
979 749981277374128128 NaN NaN 2016-07-04 15:00:45 +0000 <a href="https://about.twitter.com/products/tw... This is Atticus. He's quite simply America af.... NaN NaN NaN https://twitter.com/dog_rates/status/749981277... 1776 10 Atticus None None None None
980 749774190421639168 NaN NaN 2016-07-04 01:17:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She's a Benebop Cumberplop. 12/1... NaN NaN NaN https://twitter.com/dog_rates/status/749774190... 12 10 Lucy None None None None
981 749417653287129088 NaN NaN 2016-07-03 01:41:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Finn. He's the most unphotogenic puppe... NaN NaN NaN https://twitter.com/dog_rates/status/749417653... 11 10 Finn None None pupper None
982 749403093750648834 NaN NaN 2016-07-03 00:43:15 +0000 <a href="http://twitter.com/download/iphone" r... Duuun dun... duuun dun... dunn dun. dunn dun.... NaN NaN NaN https://twitter.com/dog_rates/status/749403093... 10 10 None None None None None
983 749395845976588288 NaN NaN 2016-07-03 00:14:27 +0000 <a href="http://twitter.com/download/iphone" r... This is George. He just remembered that bees a... NaN NaN NaN https://twitter.com/dog_rates/status/749395845... 10 10 George None None None None
984 749317047558017024 NaN NaN 2016-07-02 19:01:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Blu. He's a wild bush Floofer. I wish ... NaN NaN NaN https://twitter.com/dog_rates/status/749317047... 12 10 Blu None floofer None None
985 749075273010798592 NaN NaN 2016-07-02 03:00:36 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Boomer. He's self-baptizing. Other dog... NaN NaN NaN https://vine.co/v/5ztZvHgI17r 11 10 Boomer doggo None None None
986 749064354620928000 NaN NaN 2016-07-02 02:17:13 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He's pupset because I forgot to ... NaN NaN NaN https://twitter.com/dog_rates/status/749064354... 11 10 Winston None None None None
987 749036806121881602 NaN NaN 2016-07-02 00:27:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Dietrich. He hops at random. Other dog... NaN NaN NaN https://twitter.com/dog_rates/status/749036806... 8 10 Dietrich None None None None
988 748977405889503236 NaN NaN 2016-07-01 20:31:43 +0000 <a href="http://twitter.com/download/iphone" r... What jokester sent in a pic without a dog in i... NaN NaN NaN https://twitter.com/dog_rates/status/748977405... 10 10 not None None None None
989 748932637671223296 NaN NaN 2016-07-01 17:33:49 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Divine Doggo. Must be magical af.... NaN NaN NaN https://twitter.com/dog_rates/status/748932637... 13 10 Divine doggo None None None
990 748705597323898880 NaN NaN 2016-07-01 02:31:39 +0000 <a href="http://twitter.com" rel="nofollow">Tw... #BarkWeek is getting rather heckin terrifying ... NaN NaN NaN https://twitter.com/dog_rates/status/748705597... 13 10 None None None None None
991 748699167502000129 NaN NaN 2016-07-01 02:06:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Tripp. He's being eaten by a sherk and do... NaN NaN NaN https://twitter.com/dog_rates/status/748699167... 11 10 Tripp None None None None
992 748692773788876800 NaN NaN 2016-07-01 01:40:41 +0000 <a href="http://twitter.com/download/iphone" r... That is Quizno. This is his beach. He does not... NaN NaN NaN https://twitter.com/dog_rates/status/748692773... 10 10 his doggo None None None
993 748575535303884801 NaN NaN 2016-06-30 17:54:50 +0000 <a href="http://twitter.com/download/iphone" r... This is one of the most reckless puppers I've ... NaN NaN NaN https://twitter.com/dog_rates/status/748575535... 6 10 one None None None None
994 748568946752774144 NaN NaN 2016-06-30 17:28:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Cora. She rings a bell for treats. 12/... NaN NaN NaN https://twitter.com/dog_rates/status/748568946... 12 10 Cora None None None None
995 748346686624440324 NaN NaN 2016-06-30 02:45:28 +0000 <a href="http://twitter.com/download/iphone" r... "So... we meat again" (I'm so sorry for that p... NaN NaN NaN https://twitter.com/dog_rates/status/748346686... 10 10 None None None None None
996 748337862848962560 NaN NaN 2016-06-30 02:10:24 +0000 <a href="http://vine.co" rel="nofollow">Vine -... SWIM AWAY PUPPER SWIM AWAY 13/10 #BarkWeek ht... NaN NaN NaN https://vine.co/v/h5aDaFthX6O 13 10 None None None pupper None
997 748324050481647620 NaN NaN 2016-06-30 01:15:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Duke. He permanently looks like he jus... NaN NaN NaN https://twitter.com/dog_rates/status/748324050... 11 10 Duke None None None None
998 748307329658011649 NaN NaN 2016-06-30 00:09:04 +0000 <a href="http://twitter.com/download/iphone" r... This sherk must've leapt out of the water and ... NaN NaN NaN https://twitter.com/dog_rates/status/748307329... 7 10 None None None None None
999 748220828303695873 NaN NaN 2016-06-29 18:25:21 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Stop what you're doing and watch this heckin m... NaN NaN NaN https://vine.co/v/iiLjKuYJpr6 13 10 None None None None None
1000 747963614829678593 NaN NaN 2016-06-29 01:23:16 +0000 <a href="http://twitter.com/download/iphone" r... PUPPER NOOOOO BEHIND YOUUU 10/10 pls keep this... NaN NaN NaN https://twitter.com/dog_rates/status/747963614... 10 10 None None None pupper None
1001 747933425676525569 NaN NaN 2016-06-28 23:23:19 +0000 <a href="http://twitter.com/download/iphone" r... Pls don't send more sherks. I don't care how s... NaN NaN NaN https://twitter.com/dog_rates/status/747933425... 11 10 None None None None None
1002 747885874273214464 NaN NaN 2016-06-28 20:14:22 +0000 <a href="http://twitter.com/download/iphone" r... This is a mighty rare blue-tailed hammer sherk... NaN NaN NaN https://twitter.com/dog_rates/status/747885874... 8 10 a None None None None
1003 747844099428986880 NaN NaN 2016-06-28 17:28:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Huxley. He's pumped for #BarkWeek. Eve... NaN NaN NaN https://twitter.com/dog_rates/status/747844099... 11 10 Huxley None None None None
1004 747816857231626240 NaN NaN 2016-06-28 15:40:07 +0000 <a href="http://twitter.com/download/iphone" r... Viewer discretion is advised. This is a terrib... NaN NaN NaN https://twitter.com/dog_rates/status/747816857... 4 10 a None None None None
1005 747651430853525504 7.476487e+17 4.196984e+09 2016-06-28 04:42:46 +0000 <a href="http://twitter.com/download/iphone" r... Other pupper asked not to have his identity sh... NaN NaN NaN NaN 12 10 None None None pupper None
1006 747648653817413632 NaN NaN 2016-06-28 04:31:44 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Keurig. He apparently headbutts other ... NaN NaN NaN https://vine.co/v/iqIZFtOxEMB 12 10 Keurig None None None None
1007 747600769478692864 NaN NaN 2016-06-28 01:21:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Bookstore and Seaweed. Bookstore is ti... NaN NaN NaN https://twitter.com/dog_rates/status/747600769... 10 10 Bookstore None None None None
1008 747594051852075008 NaN NaN 2016-06-28 00:54:46 +0000 <a href="http://twitter.com/download/iphone" r... Again w the sharks guys. This week is about do... NaN NaN NaN https://twitter.com/dog_rates/status/747594051... 11 10 None None None None None
1009 747512671126323200 NaN NaN 2016-06-27 19:31:23 +0000 <a href="http://twitter.com/download/iphone" r... Guys pls stop sending actual sharks. It's too ... NaN NaN NaN https://twitter.com/dog_rates/status/747512671... 10 10 None None None None None
1010 747461612269887489 NaN NaN 2016-06-27 16:08:30 +0000 <a href="http://twitter.com/download/iphone" r... Never seen a shark hold another shark like thi... NaN NaN NaN https://twitter.com/dog_rates/status/747461612... 10 10 None None None None None
1011 747439450712596480 NaN NaN 2016-06-27 14:40:26 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Linus. He just wanted to say hello but... NaN NaN NaN https://vine.co/v/5uTVXWvn3Ip 12 10 Linus None None None None
1012 747242308580548608 NaN NaN 2016-06-27 01:37:04 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This pupper killed this great w... 7.047611e+17 4.196984e+09 2016-03-01 20:11:59 +0000 https://twitter.com/dog_rates/status/704761120... 13 10 None None None pupper None
1013 747219827526344708 NaN NaN 2016-06-27 00:07:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Atticus. He's remaining calm but his c... NaN NaN NaN https://twitter.com/dog_rates/status/747219827... 11 10 Atticus None None None None
1014 747204161125646336 NaN NaN 2016-06-26 23:05:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Clark. He's deadly af. Clearly part sh... NaN NaN NaN https://twitter.com/dog_rates/status/747204161... 10 10 Clark None None None None
1015 747103485104099331 NaN NaN 2016-06-26 16:25:26 +0000 <a href="http://twitter.com/download/iphone" r... Guys... I said DOGS with "shark qualities" or ... NaN NaN NaN https://twitter.com/dog_rates/status/747103485... 11 10 None None None None None
1016 746906459439529985 7.468859e+17 4.196984e+09 2016-06-26 03:22:31 +0000 <a href="http://twitter.com/download/iphone" r... PUPDATE: can't see any. Even if I could, I cou... NaN NaN NaN https://twitter.com/dog_rates/status/746906459... 0 10 None None None None None
1017 746872823977771008 NaN NaN 2016-06-26 01:08:52 +0000 <a href="http://twitter.com/download/iphone" r... This is a carrot. We only rate dogs. Please on... NaN NaN NaN https://twitter.com/dog_rates/status/746872823... 11 10 a None None None None
1018 746818907684614144 6.914169e+17 4.196984e+09 2016-06-25 21:34:37 +0000 <a href="http://twitter.com/download/iphone" r... Guys... Dog Jesus 2.0\n13/10 buoyant af https:... NaN NaN NaN https://twitter.com/dog_rates/status/746818907... 13 10 None None None None None
1019 746790600704425984 NaN NaN 2016-06-25 19:42:08 +0000 <a href="http://twitter.com/download/iphone" r... When you just can't resist... 10/10 topnotch t... NaN NaN NaN https://twitter.com/dog_rates/status/746790600... 10 10 None None None None None
1020 746757706116112384 NaN NaN 2016-06-25 17:31:25 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Maddie. She gets some wicked air time.... NaN NaN NaN https://vine.co/v/5BYq6hmrEI3 11 10 Maddie None None None None
1021 746726898085036033 NaN NaN 2016-06-25 15:29:00 +0000 <a href="http://twitter.com/download/iphone" r... Meet Abby. She's incredibly distracting. Just ... NaN NaN NaN https://twitter.com/dog_rates/status/746726898... 12 10 Abby None None None None
1022 746542875601690625 NaN NaN 2016-06-25 03:17:46 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Here's a golden floofer helping with the groce... NaN NaN NaN https://vine.co/v/5uZYwqmuDeT 11 10 None None floofer None None
1023 746521445350707200 NaN NaN 2016-06-25 01:52:36 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: This is Shaggy. He knows exactl... 6.678667e+17 4.196984e+09 2015-11-21 00:46:50 +0000 https://twitter.com/dog_rates/status/667866724... 10 10 Shaggy None None None None
1024 746507379341139972 NaN NaN 2016-06-25 00:56:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Shiloh. She did not pass the soft mout... NaN NaN NaN https://twitter.com/dog_rates/status/746507379... 10 10 Shiloh None None None None
1025 746369468511756288 NaN NaN 2016-06-24 15:48:42 +0000 <a href="http://twitter.com/download/iphone" r... This is an Iraqi Speed Kangaroo. It is not a d... NaN NaN NaN https://twitter.com/dog_rates/status/746369468... 9 10 an None None None None
1026 746131877086527488 NaN NaN 2016-06-24 00:04:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Gustav. He has claimed that plant. It ... NaN NaN NaN https://twitter.com/dog_rates/status/746131877... 10 10 Gustav None None None None
1027 746056683365994496 NaN NaN 2016-06-23 19:05:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Arlen and Thumpelina. They are best pa... NaN NaN NaN https://twitter.com/dog_rates/status/746056683... 11 10 Arlen None None None None
1028 745789745784041472 NaN NaN 2016-06-23 01:25:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Gus. He didn't win the Powerball. Quit... NaN NaN NaN https://twitter.com/dog_rates/status/745789745... 10 10 Gus None None None None
1029 745712589599014916 NaN NaN 2016-06-22 20:18:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Percy. He fell asleep at the wheel. Ir... NaN NaN NaN https://twitter.com/dog_rates/status/745712589... 7 10 Percy None None None None
1030 745433870967832576 NaN NaN 2016-06-22 01:50:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Lenox. She's in a wheelbarrow. Silly d... NaN NaN NaN https://twitter.com/dog_rates/status/745433870... 10 10 Lenox doggo None None None
1031 745422732645535745 NaN NaN 2016-06-22 01:06:43 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Pls stop sending in non-can... NaN NaN NaN https://twitter.com/dog_rates/status/745422732... 9 10 very None None None None
1032 745314880350101504 NaN NaN 2016-06-21 17:58:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Sugar. She excels underwater. 12/10 ph... NaN NaN NaN https://twitter.com/dog_rates/status/745314880... 12 10 Sugar None None None None
1033 745074613265149952 NaN NaN 2016-06-21 02:03:25 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Jeffrey. He wasn't prepared to execute... NaN NaN NaN https://vine.co/v/iQm3JAXuFmv 11 10 Jeffrey None None None None
1034 745057283344719872 NaN NaN 2016-06-21 00:54:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. He's downright gorgeous as hel... NaN NaN NaN https://twitter.com/dog_rates/status/745057283... 12 10 Oliver None None None None
1035 744995568523612160 NaN NaN 2016-06-20 20:49:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Abby. She got her face stuck in a glas... NaN NaN NaN https://twitter.com/dog_rates/status/744995568... 9 10 Abby None None None puppo
1036 744971049620602880 NaN NaN 2016-06-20 19:11:53 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Indie and Jupiter. They're having... NaN NaN NaN https://twitter.com/dog_rates/status/744971049... 12 10 Indie None None None None
1037 744709971296780288 NaN NaN 2016-06-20 01:54:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Harvey. He's stealthy af. 10/10 would ... NaN NaN NaN https://twitter.com/dog_rates/status/744709971... 10 10 Harvey None None None None
1038 744334592493166593 NaN NaN 2016-06-19 01:02:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Blanket. She has overthrown her human.... NaN NaN NaN https://twitter.com/dog_rates/status/744334592... 11 10 Blanket None None None None
1039 744234799360020481 NaN NaN 2016-06-18 18:26:18 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo realizing you can stand in a po... NaN NaN NaN https://twitter.com/dog_rates/status/744234799... 13 10 None doggo None None None
1040 744223424764059648 NaN NaN 2016-06-18 17:41:06 +0000 <a href="http://twitter.com/download/iphone" r... This is actually a pupper and I'd pet it so we... NaN NaN NaN https://twitter.com/strange_animals/status/672... 12 10 actually None None pupper None
1041 743980027717509120 NaN NaN 2016-06-18 01:33:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Geno. He's a Wrinkled Baklavian Velvee... NaN NaN NaN https://twitter.com/dog_rates/status/743980027... 11 10 Geno None None None None
1042 743895849529389061 NaN NaN 2016-06-17 19:59:26 +0000 <a href="http://twitter.com/download/iphone" r... When you're given AUX cord privileges from the... NaN NaN NaN https://twitter.com/dog_rates/status/743895849... 10 10 None None None None None
1043 743835915802583040 NaN NaN 2016-06-17 16:01:16 +0000 <a href="http://twitter.com/download/iphone" r... RT @dog_rates: Extremely intelligent dog here.... 6.671383e+17 4.196984e+09 2015-11-19 00:32:12 +0000 https://twitter.com/dog_rates/status/667138269... 10 10 None None None None None
1044 743609206067040256 NaN NaN 2016-06-17 01:00:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stark. He just had his first ice cream co... NaN NaN NaN https://twitter.com/dog_rates/status/743609206... 10 10 Stark None None None None
1045 743595368194129920 NaN NaN 2016-06-17 00:05:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Harold. He looks slippery af. Probably... NaN NaN NaN https://twitter.com/dog_rates/status/743595368... 7 10 Harold None None None None
1046 743545585370791937 NaN NaN 2016-06-16 20:47:36 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bentley and Millie. They do every... NaN NaN NaN https://twitter.com/dog_rates/status/743545585... 11 10 Bentley None None None None
1047 743510151680958465 NaN NaN 2016-06-16 18:26:48 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Beya. She doesn't want to swim, so she... NaN NaN NaN https://twitter.com/dog_rates/status/743510151... 13 10 Beya None None None None
1048 743253157753532416 NaN NaN 2016-06-16 01:25:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Kilo. He cannot reach the snackum. Nif... NaN NaN NaN https://twitter.com/dog_rates/status/743253157... 10 10 Kilo None None None puppo
1049 743222593470234624 NaN NaN 2016-06-15 23:24:09 +0000 <a href="http://twitter.com/download/iphone" r... This is a very rare Great Alaskan Bush Pupper.... NaN NaN NaN https://twitter.com/dog_rates/status/743222593... 12 10 a None None pupper None
1050 743210557239623680 NaN NaN 2016-06-15 22:36:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kayla, an underground poker legend. Playe... NaN NaN NaN https://twitter.com/dog_rates/status/743210557... 10 10 Kayla None None None None
1051 742534281772302336 NaN NaN 2016-06-14 01:49:03 +0000 <a href="http://vine.co" rel="nofollow">Vine -... For anyone who's wondering, this is what happe... NaN NaN NaN https://vine.co/v/iLTZmtE1FTB 11 10 None doggo None None None
1052 742528092657332225 NaN NaN 2016-06-14 01:24:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Maxaroni. He's pumped as hell for the ... NaN NaN NaN https://twitter.com/dog_rates/status/742528092... 10 10 Maxaroni None None None None
1053 742465774154047488 NaN NaN 2016-06-13 21:16:49 +0000 <a href="http://twitter.com/download/iphone" r... Was just informed about this hero pupper and o... NaN NaN NaN https://twitter.com/dog_rates/status/742465774... 14 10 None None None pupper None
1054 742423170473463808 NaN NaN 2016-06-13 18:27:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Bell. She likes holding hands. 12/10 w... NaN NaN NaN https://twitter.com/dog_rates/status/742423170... 12 10 Bell None None None None
1055 742385895052087300 NaN NaN 2016-06-13 15:59:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Phil. That's his comfort stick. He hol... NaN NaN NaN https://twitter.com/dog_rates/status/742385895... 11 10 Phil None None None None
1056 742161199639494656 NaN NaN 2016-06-13 01:06:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Doug. He's trying to float away. 12/10... NaN NaN NaN https://twitter.com/dog_rates/status/742161199... 12 10 Doug None None None None
1057 742150209887731712 NaN NaN 2016-06-13 00:22:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Edmund. He sends stellar selfies. Cute... NaN NaN NaN https://twitter.com/dog_rates/status/742150209... 8 10 Edmund None None pupper None
1058 741793263812808706 NaN NaN 2016-06-12 00:44:30 +0000 <a href="http://twitter.com/download/iphone" r... When your crush won't pay attention to you. Bo... NaN NaN NaN https://twitter.com/dog_rates/status/741793263... 10 10 None None None None None
1059 741743634094141440 NaN NaN 2016-06-11 21:27:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Aqua. She's a sandy pupper. Not sure how ... NaN NaN NaN https://twitter.com/dog_rates/status/741743634... 11 10 Aqua None None pupper None
1060 741438259667034112 NaN NaN 2016-06-11 01:13:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He's still figuring out couche... NaN NaN NaN https://twitter.com/dog_rates/status/741438259... 9 10 Tucker None None None None
1061 741303864243200000 NaN NaN 2016-06-10 16:19:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Theodore. He just saw an adult wearing... NaN NaN NaN https://twitter.com/dog_rates/status/741303864... 12 10 Theodore None None None None
1062 741099773336379392 NaN NaN 2016-06-10 02:48:49 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Ted. He's given up. 11/10 relatable af... NaN NaN NaN https://vine.co/v/ixHYvdxUx1L 11 10 Ted None None None None
1063 741067306818797568 NaN NaN 2016-06-10 00:39:48 +0000 <a href="http://twitter.com/download/iphone" r... This is just downright precious af. 12/10 for ... NaN NaN NaN https://twitter.com/dog_rates/status/741067306... 12 10 just doggo None pupper None
1064 740995100998766593 NaN NaN 2016-06-09 19:52:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Leo. He's a vape god. Blows o's for da... NaN NaN NaN https://twitter.com/dog_rates/status/740995100... 10 10 Leo None None None None
1065 740711788199743490 NaN NaN 2016-06-09 01:07:06 +0000 <a href="http://twitter.com/download/iphone" r... Here we are witnessing the touchdown of a pupn... NaN NaN NaN https://twitter.com/dog_rates/status/740711788... 9 10 None None None None None
1066 740699697422163968 NaN NaN 2016-06-09 00:19:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Chip. He only mowed half the yard. 8/1... NaN NaN NaN https://twitter.com/dog_rates/status/740699697... 8 10 Chip None None None None
1067 740676976021798912 NaN NaN 2016-06-08 22:48:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Baloo. He's expecting a fast ground ball,... NaN NaN NaN https://twitter.com/dog_rates/status/740676976... 11 10 Baloo None None pupper None
1068 740373189193256964 NaN NaN 2016-06-08 02:41:38 +0000 <a href="http://twitter.com/download/iphone" r... After so many requests, this is Bretagne. She ... NaN NaN NaN https://twitter.com/dog_rates/status/740373189... 9 11 None None None None None
1069 740365076218183684 NaN NaN 2016-06-08 02:09:24 +0000 <a href="http://twitter.com/download/iphone" r... When the photographer forgets to tell you wher... NaN NaN NaN https://twitter.com/dog_rates/status/740365076... 10 10 None None None None None
1070 740359016048689152 NaN NaN 2016-06-08 01:45:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Chase. He's in a predicament. 9/10 hel... NaN NaN NaN https://twitter.com/dog_rates/status/740359016... 9 10 Chase None None None None
1071 740214038584557568 NaN NaN 2016-06-07 16:09:13 +0000 <a href="http://twitter.com/download/iphone" r... This is getting incredibly frustrating. This i... NaN NaN NaN https://twitter.com/dog_rates/status/740214038... 10 10 getting None None None None
1072 739979191639244800 NaN NaN 2016-06-07 00:36:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Nollie. She's waving at you. If you do... NaN NaN NaN https://twitter.com/dog_rates/status/739979191... 12 10 Nollie None None None None
1073 739932936087216128 NaN NaN 2016-06-06 21:32:13 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Rorie. She's zen af. Just enjoyin... NaN NaN NaN https://twitter.com/dog_rates/status/739932936... 10 10 Rorie None None None None
1074 739844404073074688 NaN NaN 2016-06-06 15:40:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Simba. He's the grand prize. The troph... NaN NaN NaN https://twitter.com/dog_rates/status/739844404... 12 10 Simba None None None None
1075 739623569819336705 NaN NaN 2016-06-06 01:02:55 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Here's a doggo that don't need no human. 12/10... NaN NaN NaN https://vine.co/v/iY9Fr1I31U6 12 10 None doggo None None None
1076 739606147276148736 NaN NaN 2016-06-05 23:53:41 +0000 <a href="http://twitter.com/download/iphone" r... Meet Benji. He just turned 1. Has already give... NaN NaN NaN https://twitter.com/dog_rates/status/739606147... 9 10 Benji None None pupper None
1077 739544079319588864 NaN NaN 2016-06-05 19:47:03 +0000 <a href="http://twitter.com/download/iphone" r... This... is a Tyrannosaurus rex. We only rate d... NaN NaN NaN https://twitter.com/dog_rates/status/739544079... 10 10 None None None None None
1078 739485634323156992 NaN NaN 2016-06-05 15:54:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Kyle. He's a heavy drinker and an avid... NaN NaN NaN https://twitter.com/dog_rates/status/739485634... 6 10 Kyle None None None None
1079 739238157791694849 NaN NaN 2016-06-04 23:31:25 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo blowing bubbles. It's downright... NaN NaN NaN https://twitter.com/dog_rates/status/739238157... 13 10 None doggo None None None
1080 738891149612572673 7.384119e+17 3.589728e+08 2016-06-04 00:32:32 +0000 <a href="http://twitter.com/download/iphone" r... @mount_alex3 13/10 NaN NaN NaN NaN 13 10 None None None None None
1081 738885046782832640 NaN NaN 2016-06-04 00:08:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Charles. He's a Nova Scotian Towel Pou... NaN NaN NaN https://twitter.com/dog_rates/status/738885046... 11 10 Charles None None None None
1082 738883359779196928 NaN NaN 2016-06-04 00:01:35 +0000 <a href="http://twitter.com/download/iphone" r... When a single soap orb changes your entire per... NaN NaN NaN https://twitter.com/dog_rates/status/738883359... 10 10 None None None None None
1083 738537504001953792 NaN NaN 2016-06-03 01:07:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Bayley. She fell asleep trying to esca... NaN NaN NaN https://twitter.com/dog_rates/status/738537504... 11 10 Bayley None None None puppo
1084 738402415918125056 NaN NaN 2016-06-02 16:10:29 +0000 <a href="http://twitter.com/download/iphone" r... "Don't talk to me or my son ever again" ...10/... NaN NaN NaN https://twitter.com/dog_rates/status/738402415... 10 10 None None None None None
1085 738184450748633089 NaN NaN 2016-06-02 01:44:22 +0000 <a href="http://twitter.com/download/iphone" r... For the last time, we only rate dogs. Pls stop... NaN NaN NaN https://twitter.com/dog_rates/status/738184450... 9 10 None None None None None
1086 738166403467907072 NaN NaN 2016-06-02 00:32:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Axel. He's a professional leaf catcher... NaN NaN NaN https://twitter.com/dog_rates/status/738166403... 12 10 Axel None None None None
1087 738156290900254721 NaN NaN 2016-06-01 23:52:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Storkson. He's wet and sad. 10/10 chee... NaN NaN NaN https://twitter.com/dog_rates/status/738156290... 10 10 Storkson None None None None
1088 737826014890496000 NaN NaN 2016-06-01 02:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Remy. He has some long ass ears (proba... NaN NaN NaN https://twitter.com/dog_rates/status/737826014... 10 10 Remy None None None None
1089 737800304142471168 NaN NaN 2016-06-01 00:17:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She's ubering home after a few ... NaN NaN NaN https://twitter.com/dog_rates/status/737800304... 10 10 Bella None None None None
1090 737678689543020544 NaN NaN 2016-05-31 16:14:39 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Pls stop sending in non-can... NaN NaN NaN https://twitter.com/dog_rates/status/737678689... 11 10 None None None None None
1091 737445876994609152 NaN NaN 2016-05-31 00:49:32 +0000 <a href="http://twitter.com/download/iphone" r... Just wanted to share this super rare Rainbow F... NaN NaN NaN https://twitter.com/dog_rates/status/737445876... 13 10 None None floofer None None
1092 737322739594330112 NaN NaN 2016-05-30 16:40:14 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lily. She's not injured or anythi... NaN NaN NaN https://twitter.com/dog_rates/status/737322739... 9 10 Lily None None None None
1093 737310737551491075 NaN NaN 2016-05-30 15:52:33 +0000 <a href="http://twitter.com/download/iphone" r... Everybody stop what you're doing and watch the... NaN NaN NaN https://twitter.com/dog_rates/status/737310737... 13 10 None None None None None
1094 736736130620620800 NaN NaN 2016-05-29 01:49:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Chadrick. He's gnarly af 13/10 https:/... NaN NaN NaN https://twitter.com/dog_rates/status/736736130... 13 10 Chadrick None None None None
1095 736392552031657984 NaN NaN 2016-05-28 03:04:00 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Say hello to mad pupper. You know what you did... NaN NaN NaN https://vine.co/v/iEggaEOiLO3 13 10 mad None None pupper None
1096 736365877722001409 NaN NaN 2016-05-28 01:18:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Rory. He's extremely impatient. 11/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/736365877... 11 10 Rory None None pupper None
1097 736225175608430592 NaN NaN 2016-05-27 15:58:54 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please stop sending in non-... NaN NaN NaN https://twitter.com/dog_rates/status/736225175... 10 10 very None None None None
1098 736010884653420544 NaN NaN 2016-05-27 01:47:23 +0000 <a href="http://twitter.com/download/iphone" r... Right after you graduate vs when you remember ... NaN NaN NaN https://twitter.com/dog_rates/status/736010884... 10 10 None None None None None
1099 735991953473572864 NaN NaN 2016-05-27 00:32:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Maxaroni. He's curly af. Also rather f... NaN NaN NaN https://twitter.com/dog_rates/status/735991953... 11 10 Maxaroni None None None None
1100 735648611367784448 NaN NaN 2016-05-26 01:47:51 +0000 <a href="http://twitter.com/download/iphone" r... *faints* 12/10 perfection in pupper form https... NaN NaN NaN https://twitter.com/dog_rates/status/735648611... 12 10 None None None pupper None
1101 735635087207878657 NaN NaN 2016-05-26 00:54:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Dakota. He hasn't grow into his skin y... NaN NaN NaN https://twitter.com/dog_rates/status/735635087... 11 10 Dakota None None None None
1102 735274964362878976 NaN NaN 2016-05-25 01:03:06 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Please stop sending in your... NaN NaN NaN https://twitter.com/dog_rates/status/735274964... 11 10 None None None None None
1103 735256018284875776 NaN NaN 2016-05-24 23:47:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Kellogg. He accidentally opened the fr... NaN NaN NaN https://twitter.com/dog_rates/status/735256018... 8 10 Kellogg doggo None None None
1104 735137028879360001 NaN NaN 2016-05-24 15:55:00 +0000 <a href="http://twitter.com/download/iphone" r... Meet Buckley. His family &amp; some neighbors ... NaN NaN NaN https://twitter.com/dog_rates/status/735137028... 9 10 Buckley None None pupper None
1105 734912297295085568 NaN NaN 2016-05-24 01:02:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Jax. He's a literal fluffball. Sneaky ... NaN NaN NaN https://twitter.com/dog_rates/status/734912297... 10 10 Jax None None None None
1106 734787690684657664 NaN NaN 2016-05-23 16:46:51 +0000 <a href="http://twitter.com/download/iphone" r... This dog is more successful than I will ever b... NaN NaN NaN https://twitter.com/dog_rates/status/734787690... 13 10 None None None None None
1107 734776360183431168 NaN NaN 2016-05-23 16:01:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Livvie. Someone should tell her it's b... NaN NaN NaN https://twitter.com/dog_rates/status/734776360... 11 10 Livvie None None None None
1108 734559631394082816 NaN NaN 2016-05-23 01:40:38 +0000 <a href="http://vine.co" rel="nofollow">Vine -... When your friend is turnt af and you're just t... NaN NaN NaN https://vine.co/v/iExiLXiiHvX 10 10 None None None None None
1109 733828123016450049 NaN NaN 2016-05-21 01:13:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Terry. The harder you hug him the fart... NaN NaN NaN https://twitter.com/dog_rates/status/733828123... 10 10 Terry None None None None
1110 733822306246479872 NaN NaN 2016-05-21 00:50:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Moose. He's a Polynesian Floofer. Dapp... NaN NaN NaN https://twitter.com/dog_rates/status/733822306... 10 10 Moose None floofer None None
1111 733482008106668032 NaN NaN 2016-05-20 02:18:32 +0000 <a href="http://twitter.com/download/iphone" r... "Ello this is dog how may I assist" ...10/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/733482008... 10 10 None None None None None
1112 733460102733135873 NaN NaN 2016-05-20 00:51:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Hermione. Her face is as old as time. ... NaN NaN NaN https://twitter.com/dog_rates/status/733460102... 11 10 Hermione None None None None
1113 733109485275860992 NaN NaN 2016-05-19 01:38:16 +0000 <a href="http://twitter.com/download/iphone" r... Like father (doggo), like son (pupper). Both 1... NaN NaN NaN https://twitter.com/dog_rates/status/733109485... 12 10 None doggo None pupper None
1114 732732193018155009 NaN NaN 2016-05-18 00:39:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralpher. He's an East Guinean Flop Dog... NaN NaN NaN https://twitter.com/dog_rates/status/732732193... 12 10 Ralpher None None None None
1115 732726085725589504 NaN NaN 2016-05-18 00:14:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Aldrick. He looks wise af. Also except... NaN NaN NaN https://twitter.com/dog_rates/status/732726085... 11 10 Aldrick None None None None
1116 732585889486888962 NaN NaN 2016-05-17 14:57:41 +0000 <a href="http://twitter.com/download/iphone" r... When your teacher agreed on 10,000 RTs and no ... NaN NaN NaN https://twitter.com/dog_rates/status/732585889... 10 10 None None None None None
1117 732375214819057664 NaN NaN 2016-05-17 01:00:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Kyle (pronounced 'Mitch'). He strives ... NaN NaN NaN https://twitter.com/dog_rates/status/732375214... 11 10 Kyle doggo None None None
1118 732005617171337216 NaN NaN 2016-05-16 00:31:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Larry. He has no self control. Tongue ... NaN NaN NaN https://twitter.com/dog_rates/status/732005617... 11 10 Larry None None None None
1119 731285275100512256 NaN NaN 2016-05-14 00:49:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Solomon. He's a Beneroo Cumberflop. 12... NaN NaN NaN https://twitter.com/dog_rates/status/731285275... 12 10 Solomon None None None None
1120 731156023742988288 NaN NaN 2016-05-13 16:15:54 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to this unbelievably well behaved sq... NaN NaN NaN https://twitter.com/dog_rates/status/731156023... 204 170 this None None None None
1121 730924654643314689 NaN NaN 2016-05-13 00:56:32 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Pls stop sending non-canine... NaN NaN NaN https://twitter.com/dog_rates/status/730924654... 9 10 unacceptable None None None None
1122 730573383004487680 NaN NaN 2016-05-12 01:40:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Rooney. He can't comprehend glass. 10/... NaN NaN NaN https://twitter.com/dog_rates/status/730573383... 10 10 Rooney None None pupper None
1123 730427201120833536 NaN NaN 2016-05-11 15:59:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Crystal. She's flawless. Really wants ... NaN NaN NaN https://twitter.com/dog_rates/status/730427201... 11 10 Crystal None None None None
1124 730211855403241472 NaN NaN 2016-05-11 01:44:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Ziva. She doesn't know how her collar ... NaN NaN NaN https://twitter.com/dog_rates/status/730211855... 11 10 Ziva None None None None
1125 730196704625098752 NaN NaN 2016-05-11 00:43:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Charles. He's camera shy. Tail longer ... NaN NaN NaN https://twitter.com/dog_rates/status/730196704... 6 10 Charles None None None None
1126 729854734790754305 NaN NaN 2016-05-10 02:05:03 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Ollie. He conducts this train. He... NaN NaN NaN https://twitter.com/dog_rates/status/729854734... 11 10 Ollie None None None None
1127 729838605770891264 7.291135e+17 4.196984e+09 2016-05-10 01:00:58 +0000 <a href="http://twitter.com/download/iphone" r... "Challenge completed" \n(pupgraded to 12/10) h... NaN NaN NaN https://twitter.com/dog_rates/status/729838605... 12 10 None None None None None
1128 729823566028484608 NaN NaN 2016-05-10 00:01:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Stefan. He's a downright remarkable pu... NaN NaN NaN https://twitter.com/dog_rates/status/729823566... 13 10 Stefan None None None None
1129 729463711119904772 NaN NaN 2016-05-09 00:11:16 +0000 <a href="http://twitter.com/download/iphone" r... Meet Pupcasso. You can't afford his art. 13/10... NaN NaN NaN https://twitter.com/dog_rates/status/729463711... 13 10 Pupcasso None None None None
1130 729113531270991872 NaN NaN 2016-05-08 00:59:46 +0000 <a href="http://twitter.com/download/iphone" r... "Challenge accepted"\n10/10 https://t.co/vNjvr... NaN NaN NaN https://twitter.com/dog_rates/status/729113531... 10 10 None None None None None
1131 728986383096946689 NaN NaN 2016-05-07 16:34:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Puff. He started out on the streets (f... NaN NaN NaN https://twitter.com/dog_rates/status/728986383... 11 10 Puff None None None None
1132 728760639972315136 NaN NaN 2016-05-07 01:37:30 +0000 <a href="http://twitter.com/download/iphone" r... When you're way too slow for the "down low" po... NaN NaN NaN https://twitter.com/dog_rates/status/728760639... 13 10 None None None None None
1133 728751179681943552 NaN NaN 2016-05-07 00:59:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Flurpson. He can't believe it's not bu... NaN NaN NaN https://twitter.com/dog_rates/status/728751179... 10 10 Flurpson None None None None
1134 728653952833728512 NaN NaN 2016-05-06 18:33:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Coleman. Somebody needs to tell him th... NaN NaN NaN https://twitter.com/dog_rates/status/728653952... 8 10 Coleman None None None None
1135 728409960103686147 NaN NaN 2016-05-06 02:24:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Wallace. He's a skater pup. He said se... NaN NaN NaN https://twitter.com/dog_rates/status/728409960... 10 10 Wallace None None None None
1136 728387165835677696 NaN NaN 2016-05-06 00:53:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Enchilada (yes, that's her real name).... NaN NaN NaN https://twitter.com/dog_rates/status/728387165... 12 10 Enchilada None None None None
1137 728046963732717569 NaN NaN 2016-05-05 02:21:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Raymond. He controls fountains with hi... NaN NaN NaN https://twitter.com/dog_rates/status/728046963... 11 10 Raymond None None None None
1138 728035342121635841 NaN NaN 2016-05-05 01:35:26 +0000 <a href="http://twitter.com/download/iphone" r... This is all I want in my life. 12/10 for super... NaN NaN NaN https://twitter.com/dog_rates/status/728035342... 12 10 all None None pupper None
1139 728015554473250816 NaN NaN 2016-05-05 00:16:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Rueben. He has reached ultimate pupper... NaN NaN NaN https://twitter.com/dog_rates/status/728015554... 11 10 Rueben None None pupper None
1140 727685679342333952 NaN NaN 2016-05-04 02:26:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Cilantro. She's a Fellation Gadzooks. ... NaN NaN NaN https://twitter.com/dog_rates/status/727685679... 12 10 Cilantro None None None None
1141 727644517743104000 NaN NaN 2016-05-03 23:42:26 +0000 <a href="http://twitter.com/download/iphone" r... Here's a doggo struggling to cope with the win... NaN NaN NaN https://twitter.com/dog_rates/status/727644517... 13 10 None doggo None None None
1142 727524757080539137 NaN NaN 2016-05-03 15:46:33 +0000 <a href="http://twitter.com/download/iphone" r... This pupper had to undergo emergency haircut s... NaN NaN NaN https://twitter.com/dog_rates/status/727524757... 10 10 None None None pupper None
1143 727314416056803329 NaN NaN 2016-05-03 01:50:44 +0000 <a href="http://twitter.com/download/iphone" r... This pupper was about to explain where that di... NaN NaN NaN https://twitter.com/dog_rates/status/727314416... 11 10 None None None pupper None
1144 727286334147182592 NaN NaN 2016-05-02 23:59:09 +0000 <a href="http://twitter.com/download/iphone" r... I swear to god if we get sent another Blue Mad... NaN NaN NaN https://twitter.com/dog_rates/status/727286334... 9 10 None None None None None
1145 727175381690781696 NaN NaN 2016-05-02 16:38:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Karll. He just wants to go kayaking. 1... NaN NaN NaN https://twitter.com/dog_rates/status/727175381... 10 10 Karll None None None None
1146 727155742655025152 NaN NaN 2016-05-02 15:20:13 +0000 <a href="http://vine.co" rel="nofollow">Vine -... When you're trying to enjoy yourself but end u... NaN NaN NaN https://vine.co/v/ixa1ejbXiM7 11 10 None None None None None
1147 726935089318363137 NaN NaN 2016-05-02 00:43:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Sprout. He's just precious af. 12/10 I... NaN NaN NaN https://twitter.com/dog_rates/status/726935089... 12 10 Sprout None None None None
1148 726887082820554753 NaN NaN 2016-05-01 21:32:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Blitz. He's a new dad struggling to co... NaN NaN NaN https://twitter.com/dog_rates/status/726887082... 10 10 Blitz None None None None
1149 726828223124897792 NaN NaN 2016-05-01 17:38:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Bloop. He's a Phoenician Winnebago. To... NaN NaN NaN https://twitter.com/dog_rates/status/726828223... 12 10 Bloop None None None None
1150 726224900189511680 NaN NaN 2016-04-30 01:41:23 +0000 <a href="http://twitter.com/download/iphone" r... I'm getting super heckin frustrated with you a... NaN NaN NaN https://twitter.com/dog_rates/status/726224900... 9 10 None None None None None
1151 725842289046749185 NaN NaN 2016-04-29 00:21:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Colby. He's currently regretting all t... NaN NaN NaN https://twitter.com/dog_rates/status/725842289... 12 10 Colby None None None None
1152 725786712245440512 NaN NaN 2016-04-28 20:40:11 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lillie. She's a Rutabagan Floofem... NaN NaN NaN https://twitter.com/dog_rates/status/725786712... 11 10 Lillie None None pupper None
1153 725729321944506368 NaN NaN 2016-04-28 16:52:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. She's a Butternut Splishnsplash.... NaN NaN NaN https://twitter.com/dog_rates/status/725729321... 12 10 Lola None None None None
1154 725458796924002305 NaN NaN 2016-04-27 22:57:10 +0000 <a href="http://twitter.com/download/iphone" r... Pup had to be removed cuz it wouldn't have bee... NaN NaN NaN https://twitter.com/foxdeportes/status/7251360... 13 10 None None None None None
1155 724983749226668032 NaN NaN 2016-04-26 15:29:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Fred-Rick. He dabbles in parkour. The ... NaN NaN NaN https://twitter.com/dog_rates/status/724983749... 12 10 Fred None None None None
1156 724771698126512129 NaN NaN 2016-04-26 01:26:53 +0000 <a href="http://twitter.com/download/iphone" r... Nothin better than a doggo and a sunset. 11/10... NaN NaN NaN https://twitter.com/dog_rates/status/724771698... 11 10 None doggo None None None
1157 724405726123311104 NaN NaN 2016-04-25 01:12:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Ashleigh. She's having Coachella withd... NaN NaN NaN https://twitter.com/dog_rates/status/724405726... 10 10 Ashleigh None None pupper None
1158 724049859469295616 NaN NaN 2016-04-24 01:38:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Kreggory. He just took a look at his s... NaN NaN NaN https://twitter.com/dog_rates/status/724049859... 10 10 Kreggory None None None None
1159 724046343203856385 NaN NaN 2016-04-24 01:24:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Sarge. Not even he knows what his tong... NaN NaN NaN https://twitter.com/dog_rates/status/724046343... 10 10 Sarge None None None None
1160 724004602748780546 NaN NaN 2016-04-23 22:38:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Luther. He saw a ghost. Spooked af. 11... NaN NaN NaN https://twitter.com/dog_rates/status/724004602... 11 10 Luther None None pupper None
1161 723912936180330496 NaN NaN 2016-04-23 16:34:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Sugar. She's a Bolivian Superfloof. Sp... NaN NaN NaN https://twitter.com/dog_rates/status/723912936... 12 10 Sugar None None None None
1162 723688335806480385 NaN NaN 2016-04-23 01:41:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Reginald. He starts screaming at rando... NaN NaN NaN https://twitter.com/dog_rates/status/723688335... 12 10 Reginald None None None None
1163 723673163800948736 NaN NaN 2016-04-23 00:41:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Ivar. She is a badass Viking warrior. ... NaN NaN NaN https://twitter.com/dog_rates/status/723673163... 10 10 Ivar None None None None
1164 723179728551723008 NaN NaN 2016-04-21 16:00:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Jangle. She's addicted to broccoli. It... NaN NaN NaN https://twitter.com/dog_rates/status/723179728... 8 10 Jangle None None None None
1165 722974582966214656 NaN NaN 2016-04-21 02:25:47 +0000 <a href="http://twitter.com/download/iphone" r... Happy 4/20 from the squad! 13/10 for all https... NaN NaN NaN https://twitter.com/dog_rates/status/722974582... 4 20 None None None None None
1166 722613351520608256 NaN NaN 2016-04-20 02:30:23 +0000 <a href="http://twitter.com/download/iphone" r... Meet Schnitzel. He's a Tropicana Floofboop. Ge... NaN NaN NaN https://twitter.com/dog_rates/status/722613351... 12 10 Schnitzel None None None None
1167 721503162398597120 NaN NaN 2016-04-17 00:58:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Panda. He's happy af. 11/10 https://t.... NaN NaN NaN https://twitter.com/dog_rates/status/721503162... 11 10 Panda None None None None
1168 721001180231503872 NaN NaN 2016-04-15 15:44:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. Bath time is upon him. His fea... NaN NaN NaN https://twitter.com/dog_rates/status/721001180... 11 10 Oliver None None pupper None
1169 720785406564900865 NaN NaN 2016-04-15 01:26:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He hears everything you say. D... NaN NaN NaN https://twitter.com/dog_rates/status/720785406... 12 10 Archie None None None None
1170 720775346191278080 NaN NaN 2016-04-15 00:46:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Berkeley. He's in a predicament. 10/10... NaN NaN NaN https://twitter.com/dog_rates/status/720775346... 10 10 Berkeley None None None None
1171 720415127506415616 NaN NaN 2016-04-14 00:55:25 +0000 <a href="http://twitter.com/download/iphone" r... Garden's coming in nice this year. 10/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/720415127... 10 10 None None None None None
1172 720389942216527872 NaN NaN 2016-04-13 23:15:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphé. He patrols the lake. Looking f... NaN NaN NaN https://twitter.com/dog_rates/status/720389942... 11 10 Ralphé None None None None
1173 720340705894408192 NaN NaN 2016-04-13 19:59:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Derek. He just got balled on. Can't ev... NaN NaN NaN https://twitter.com/dog_rates/status/720340705... 10 10 Derek None None pupper None
1174 720059472081784833 NaN NaN 2016-04-13 01:22:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Charleson. He lost his plunger. Looked... NaN NaN NaN https://twitter.com/dog_rates/status/720059472... 9 10 Charleson None None None None
1175 720043174954147842 NaN NaN 2016-04-13 00:17:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Neptune. He's a Snowy Swiss Mountain F... NaN NaN NaN https://twitter.com/dog_rates/status/720043174... 11 10 Neptune None None None None
1176 719991154352222208 NaN NaN 2016-04-12 20:50:42 +0000 <a href="http://twitter.com/download/iphone" r... This doggo was initially thrilled when she saw... NaN NaN NaN https://twitter.com/dog_rates/status/719991154... 10 10 None doggo None None None
1177 719704490224398336 NaN NaN 2016-04-12 01:51:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Clyde. He's making sure you're having ... NaN NaN NaN https://twitter.com/dog_rates/status/719704490... 12 10 Clyde None None pupper None
1178 719551379208073216 NaN NaN 2016-04-11 15:43:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Harnold. He accidentally opened the fr... NaN NaN NaN https://twitter.com/dog_rates/status/719551379... 10 10 Harnold None None None None
1179 719367763014393856 NaN NaN 2016-04-11 03:33:34 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sid &amp; Murphy. Murphy floats alongside... NaN NaN NaN https://twitter.com/dog_rates/status/719367763... 11 10 Sid None None None None
1180 719339463458033665 NaN NaN 2016-04-11 01:41:07 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lucy and Sophie. They think they'... NaN NaN NaN https://twitter.com/dog_rates/status/719339463... 10 10 Lucy None None None None
1181 719332531645071360 NaN NaN 2016-04-11 01:13:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Pippa. She managed to start the car bu... NaN NaN NaN https://twitter.com/dog_rates/status/719332531... 11 10 Pippa None None None None
1182 718971898235854848 NaN NaN 2016-04-10 01:20:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Sadie. She is prepared for battle. 10/... NaN NaN NaN https://twitter.com/dog_rates/status/718971898... 10 10 Sadie None None None None
1183 718939241951195136 NaN NaN 2016-04-09 23:10:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Otis. Everybody look at Otis. 12/10 wo... NaN NaN NaN https://twitter.com/dog_rates/status/718939241... 12 10 Otis None None None None
1184 718631497683582976 NaN NaN 2016-04-09 02:47:55 +0000 <a href="http://twitter.com/download/iphone" r... We normally don't rate marshmallows but this o... NaN NaN NaN https://twitter.com/dog_rates/status/718631497... 10 10 None None None None None
1185 718613305783398402 NaN NaN 2016-04-09 01:35:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Carper. He's a Tortellini Angiosperm. ... NaN NaN NaN https://twitter.com/dog_rates/status/718613305... 11 10 Carper None None None None
1186 718540630683709445 NaN NaN 2016-04-08 20:46:50 +0000 <a href="http://twitter.com/download/iphone" r... Get you a pup that can do both. 10/10 https://... NaN NaN NaN https://twitter.com/dog_rates/status/718540630... 10 10 None None None None None
1187 718460005985447936 NaN NaN 2016-04-08 15:26:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Bowie. He's listening for underground squ... NaN NaN NaN https://twitter.com/dog_rates/status/718460005... 9 10 Bowie None None None None
1188 718454725339934721 NaN NaN 2016-04-08 15:05:29 +0000 <a href="http://twitter.com/download/iphone" r... This pic is old but I hadn't seen it until tod... NaN NaN NaN https://twitter.com/dog_rates/status/718454725... 13 10 None None None None None
1189 718246886998687744 NaN NaN 2016-04-08 01:19:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Alexanderson. He's got a weird ass bir... NaN NaN NaN https://twitter.com/dog_rates/status/718246886... 3 10 Alexanderson None None None None
1190 718234618122661888 NaN NaN 2016-04-08 00:30:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Suki. She was born with a blurry tail ... NaN NaN NaN https://twitter.com/dog_rates/status/718234618... 11 10 Suki None None None None
1191 717841801130979328 NaN NaN 2016-04-06 22:29:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Barclay. His father was a banana. 11/1... NaN NaN NaN https://twitter.com/dog_rates/status/717841801... 11 10 Barclay None None None None
1192 717790033953034240 NaN NaN 2016-04-06 19:04:14 +0000 <a href="http://twitter.com/download/iphone" r... Here's a badass mystery pupper. You weren't aw... NaN NaN NaN https://twitter.com/dog_rates/status/717790033... 10 10 None None None pupper None
1193 717537687239008257 NaN NaN 2016-04-06 02:21:30 +0000 <a href="http://twitter.com/download/iphone" r... People please. This is a Deadly Mediterranean ... NaN NaN NaN https://twitter.com/dog_rates/status/717537687... 11 10 a None None None None
1194 717428917016076293 NaN NaN 2016-04-05 19:09:17 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Skittle. He's trying to communicate. 1... NaN NaN NaN https://vine.co/v/iIhEU2lVqxz 11 10 Skittle None None None None
1195 717421804990701568 NaN NaN 2016-04-05 18:41:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ebby. She's a Zimbabwean Feta. Embarra... NaN NaN NaN https://twitter.com/dog_rates/status/717421804... 9 10 Ebby None None None None
1196 717047459982213120 NaN NaN 2016-04-04 17:53:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Flávio (pronounced Baxter). He's a Ben... NaN NaN NaN https://twitter.com/dog_rates/status/717047459... 12 10 Flávio None None None None
1197 717009362452090881 NaN NaN 2016-04-04 15:22:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Smokey. He's having some sort of exist... NaN NaN NaN https://twitter.com/dog_rates/status/717009362... 10 10 Smokey None None pupper None
1198 716802964044845056 NaN NaN 2016-04-04 01:41:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Link. He struggles with couches. 10/10... NaN NaN NaN https://twitter.com/dog_rates/status/716802964... 10 10 Link None None None None
1199 716791146589110272 NaN NaN 2016-04-04 00:55:01 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jennifur. She's supposed to be navigating... NaN NaN NaN https://twitter.com/dog_rates/status/716791146... 11 10 Jennifur None None None None
1200 716730379797970944 NaN NaN 2016-04-03 20:53:33 +0000 <a href="http://twitter.com/download/iphone" r... There has clearly been a mistake. Pup did noth... NaN NaN NaN https://twitter.com/chpsanfrancisco/status/716... 12 10 None None None None None
1201 716447146686459905 NaN NaN 2016-04-03 02:08:05 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Ozzy. He's acrobatic af. Legendary pup... NaN NaN NaN https://vine.co/v/eMmXVPn5eQK 13 10 Ozzy None None pupper None
1202 716439118184652801 NaN NaN 2016-04-03 01:36:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Bluebert. He just saw that both #Final... NaN NaN NaN https://twitter.com/dog_rates/status/716439118... 50 50 Bluebert None None None None
1203 716285507865542656 NaN NaN 2016-04-02 15:25:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Stephanus. She stays woke. 12/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/716285507... 12 10 Stephanus None None None None
1204 716080869887381504 NaN NaN 2016-04-02 01:52:38 +0000 <a href="http://twitter.com/download/iphone" r... Here's a super majestic doggo and a sunset 11/... NaN NaN NaN https://twitter.com/dog_rates/status/716080869... 11 10 None doggo None None None
1205 715928423106027520 NaN NaN 2016-04-01 15:46:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Bubbles. He's a Yorkshire Piccolope. 1... NaN NaN NaN https://twitter.com/dog_rates/status/715928423... 11 10 Bubbles None None None None
1206 715758151270801409 NaN NaN 2016-04-01 04:30:16 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is old now but it's absolutely heckin fan... NaN NaN NaN https://vine.co/v/hYdLVKDpAFu 13 10 old None None None None
1207 715733265223708672 NaN NaN 2016-04-01 02:51:22 +0000 <a href="http://twitter.com/download/iphone" r... This is a taco. We only rate dogs. Please only... NaN NaN NaN https://twitter.com/dog_rates/status/715733265... 10 10 a None None None None
1208 715704790270025728 NaN NaN 2016-04-01 00:58:13 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Bentley. He gives kisses back. 11/10 p... NaN NaN NaN https://vine.co/v/ijAlDnuOD0l 11 10 Bentley None None None None
1209 715696743237730304 NaN NaN 2016-04-01 00:26:15 +0000 <a href="http://twitter.com/download/iphone" r... Meet Toby. He's a Lithuanian High-Steppin Stic... NaN NaN NaN https://twitter.com/dog_rates/status/715696743... 10 10 Toby None None None None
1210 715680795826982913 NaN NaN 2016-03-31 23:22:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Zeus. He's downright fabulous. 12/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/715680795... 12 10 Zeus None None None None
1211 715360349751484417 NaN NaN 2016-03-31 02:09:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Bertson. He just wants to say hi. 11/1... NaN NaN NaN https://twitter.com/dog_rates/status/715360349... 11 10 Bertson None None None None
1212 715342466308784130 NaN NaN 2016-03-31 00:58:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar. He's a world renowned snowball ... NaN NaN NaN https://twitter.com/dog_rates/status/715342466... 10 10 Oscar None None None None
1213 715220193576927233 NaN NaN 2016-03-30 16:52:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Nico. His selfie game is strong af. Ex... NaN NaN NaN https://twitter.com/dog_rates/status/715220193... 10 10 Nico None None None None
1214 715200624753819648 NaN NaN 2016-03-30 15:34:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Michelangelope. He's half coffee cup. ... NaN NaN NaN https://twitter.com/dog_rates/status/715200624... 12 10 Michelangelope None None None None
1215 715009755312439296 NaN NaN 2016-03-30 02:56:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Siba. She's remarkably mobile. Very sl... NaN NaN NaN https://twitter.com/dog_rates/status/715009755... 12 10 Siba None None None None
1216 714982300363173890 NaN NaN 2016-03-30 01:07:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Calbert. He forgot to clear his Google... NaN NaN NaN https://twitter.com/dog_rates/status/714982300... 9 10 Calbert None None None None
1217 714962719905021952 NaN NaN 2016-03-29 23:49:30 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Just in case anyone's having a bad day. 12/10 ... NaN NaN NaN https://vine.co/v/inVtemLt9tE 12 10 None None None None None
1218 714957620017307648 NaN NaN 2016-03-29 23:29:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Curtis. He's an Albino Haberdasher. Te... NaN NaN NaN https://twitter.com/dog_rates/status/714957620... 10 10 Curtis None None None None
1219 714631576617938945 NaN NaN 2016-03-29 01:53:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Benedict. He's a feisty pup. Needs a b... NaN NaN NaN https://twitter.com/dog_rates/status/714631576... 4 10 Benedict None None None None
1220 714606013974974464 NaN NaN 2016-03-29 00:12:05 +0000 <a href="http://twitter.com/download/iphone" r... Here are two lil cuddly puppers. Both 12/10 wo... NaN NaN NaN https://twitter.com/dog_rates/status/714606013... 12 10 None None None None None
1221 714485234495041536 NaN NaN 2016-03-28 16:12:09 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Blitz. He screams. 10/10 (vid by @yeaa... NaN NaN NaN https://vine.co/v/iDrOvVqq0A6 10 10 Blitz None None None None
1222 714258258790387713 NaN NaN 2016-03-28 01:10:13 +0000 <a href="http://twitter.com/download/iphone" r... Meet Travis and Flurp. Travis is pretty chill ... NaN NaN NaN https://twitter.com/dog_rates/status/714258258... 10 10 Travis None None None None
1223 714251586676113411 NaN NaN 2016-03-28 00:43:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Thumas. He hates potted plants. 8/10 w... NaN NaN NaN https://twitter.com/dog_rates/status/714251586... 8 10 Thumas None None None None
1224 714214115368108032 NaN NaN 2016-03-27 22:14:49 +0000 <a href="http://twitter.com/download/iphone" r... Happy Easter from the squad! 🐇🐶 13/10 for all ... NaN NaN NaN https://twitter.com/dog_rates/status/714214115... 13 10 None None None None None
1225 714141408463036416 NaN NaN 2016-03-27 17:25:54 +0000 <a href="http://twitter.com/download/iphone" r... I know we only rate dogs, but since it's Easte... NaN NaN NaN https://twitter.com/dog_rates/status/714141408... 10 10 None None None None None
1226 713919462244790272 NaN NaN 2016-03-27 02:43:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Kanu. He's a Freckled Ticonderoga. Sim... NaN NaN NaN https://twitter.com/dog_rates/status/713919462... 12 10 Kanu None None None None
1227 713909862279876608 NaN NaN 2016-03-27 02:05:49 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Doug. His nose is legendary af. 12/10 ... NaN NaN NaN https://vine.co/v/iDWlapaXWmm 12 10 Doug None None None None
1228 713900603437621249 NaN NaN 2016-03-27 01:29:02 +0000 <a href="http://twitter.com/download/iphone" r... Happy Saturday here's 9 puppers on a bench. 99... NaN NaN NaN https://twitter.com/dog_rates/status/713900603... 99 90 None None None None None
1229 713761197720473600 NaN NaN 2016-03-26 16:15:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Piper. She would really like that tenn... NaN NaN NaN https://twitter.com/dog_rates/status/713761197... 12 10 Piper None None None None
1230 713411074226274305 NaN NaN 2016-03-25 17:03:49 +0000 <a href="http://twitter.com/download/iphone" r... Here we see an extremely rare Bearded Floofmal... NaN NaN NaN https://twitter.com/dog_rates/status/713411074... 11 10 None None None None None
1231 713177543487135744 NaN NaN 2016-03-25 01:35:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Lance. Lance doesn't give a shit. 10/1... NaN NaN NaN https://twitter.com/dog_rates/status/713177543... 10 10 Lance None None None None
1232 713175907180089344 NaN NaN 2016-03-25 01:29:21 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Opie and Clarkus. Clarkus fell as... NaN NaN NaN https://twitter.com/dog_rates/status/713175907... 10 10 Opie None None None None
1233 712809025985978368 NaN NaN 2016-03-24 01:11:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Stubert. He just arrived. 10/10 https:... NaN NaN NaN https://twitter.com/dog_rates/status/712809025... 10 10 Stubert None None None None
1234 712717840512598017 NaN NaN 2016-03-23 19:09:09 +0000 <a href="http://twitter.com/download/iphone" r... Please don't send in any more polar bears. We ... NaN NaN NaN https://twitter.com/dog_rates/status/712717840... 10 10 None None None None None
1235 712668654853337088 NaN NaN 2016-03-23 15:53:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Sunny and Roxy. They pull things ... NaN NaN NaN https://twitter.com/dog_rates/status/712668654... 10 10 Sunny None None None None
1236 712438159032893441 NaN NaN 2016-03-23 00:37:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Kane. He's a semi-submerged Haitian Hu... NaN NaN NaN https://twitter.com/dog_rates/status/712438159... 11 10 Kane None None None None
1237 712309440758808576 NaN NaN 2016-03-22 16:06:19 +0000 <a href="http://twitter.com/download/iphone" r... Reminder that we made our first set of sticker... NaN NaN NaN https://twitter.com/stickergrub/status/7099191... 12 10 None None None pupper None
1238 712097430750289920 NaN NaN 2016-03-22 02:03:52 +0000 <a href="http://twitter.com/download/iphone" r... I can't even comprehend how confused this dog ... NaN NaN NaN https://twitter.com/dog_rates/status/712097430... 10 10 None None None None None
1239 712092745624633345 NaN NaN 2016-03-22 01:45:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Steven. He's inverted af. Also very he... NaN NaN NaN https://twitter.com/dog_rates/status/712092745... 7 10 Steven None None None None
1240 712085617388212225 NaN NaN 2016-03-22 01:16:55 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Olive and Ruby. They are best bud... NaN NaN NaN https://twitter.com/dog_rates/status/712085617... 11 10 Olive None None None None
1241 712065007010385924 NaN NaN 2016-03-21 23:55:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Chester. He's clearly in charge of the... NaN NaN NaN https://twitter.com/dog_rates/status/712065007... 6 10 Chester None None None None
1242 711998809858043904 NaN NaN 2016-03-21 19:31:59 +0000 <a href="http://twitter.com/download/iphone" r... RT @twitter: @dog_rates Awesome Tweet! 12/10. ... 7.119983e+17 7.832140e+05 2016-03-21 19:29:52 +0000 https://twitter.com/twitter/status/71199827977... 12 10 None None None None None
1243 711968124745228288 NaN NaN 2016-03-21 17:30:03 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He's trapped in a cup of coffee.... NaN NaN NaN https://twitter.com/dog_rates/status/711968124... 10 10 Winston None None pupper None
1244 711743778164514816 NaN NaN 2016-03-21 02:38:34 +0000 <a href="http://twitter.com/download/iphone" r... Meet Roosevelt. He's calculating the best case... NaN NaN NaN https://twitter.com/dog_rates/status/711743778... 11 10 Roosevelt None None None None
1245 711732680602345472 NaN NaN 2016-03-21 01:54:29 +0000 <a href="http://twitter.com/download/iphone" r... I want to hear the joke this dog was just told... NaN NaN NaN https://twitter.com/dog_rates/status/711732680... 10 10 None None None None None
1246 711694788429553666 NaN NaN 2016-03-20 23:23:54 +0000 <a href="http://twitter.com/download/iphone" r... Oh. My. God. 13/10 magical af https://t.co/Ezu... NaN NaN NaN https://twitter.com/dog_rates/status/711694788... 13 10 None None None None None
1247 711652651650457602 NaN NaN 2016-03-20 20:36:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Gary. He just wanted to say hi. 9/10 v... NaN NaN NaN https://twitter.com/dog_rates/status/711652651... 9 10 Gary None None None None
1248 711363825979756544 NaN NaN 2016-03-20 01:28:47 +0000 <a href="http://twitter.com/download/iphone" r... "Please, no puparazzi" 11/10 https://t.co/nJIX... NaN NaN NaN https://twitter.com/dog_rates/status/711363825... 11 10 None None None None None
1249 711306686208872448 NaN NaN 2016-03-19 21:41:44 +0000 <a href="http://twitter.com/download/iphone" r... What hooligan sent in pictures w/out a dog in ... NaN NaN NaN https://twitter.com/dog_rates/status/711306686... 3 10 None None None None None
1250 711008018775851008 NaN NaN 2016-03-19 01:54:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Chuckles. He had a balloon but he acci... NaN NaN NaN https://twitter.com/dog_rates/status/711008018... 11 10 Chuckles None None pupper None
1251 710997087345876993 NaN NaN 2016-03-19 01:11:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Milo and Amos. They are the best of pals.... NaN NaN NaN https://twitter.com/dog_rates/status/710997087... 12 10 Milo None None None None
1252 710844581445812225 NaN NaN 2016-03-18 15:05:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Staniel. His selfie game is strong af.... NaN NaN NaN https://twitter.com/dog_rates/status/710844581... 10 10 Staniel None None None None
1253 710833117892898816 NaN NaN 2016-03-18 14:19:56 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Sora. She's an Egyptian Pumpernic... NaN NaN NaN https://twitter.com/dog_rates/status/710833117... 12 10 Sora None None None None
1254 710658690886586372 NaN NaN 2016-03-18 02:46:49 +0000 <a href="http://twitter.com/download/iphone" r... Here's a brigade of puppers. All look very pre... NaN NaN NaN https://twitter.com/dog_rates/status/710658690... 80 80 None None None None None
1255 710609963652087808 NaN NaN 2016-03-17 23:33:12 +0000 <a href="http://vine.co" rel="nofollow">Vine -... I've watched this a million times and you prob... NaN NaN NaN https://vine.co/v/idaTpwH5TgU 12 10 None None None None None
1256 710588934686908417 NaN NaN 2016-03-17 22:09:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Beemo. He's a Chubberflop mix. 12/10 w... NaN NaN NaN https://twitter.com/dog_rates/status/710588934... 12 10 Beemo None None None None
1257 710296729921429505 NaN NaN 2016-03-17 02:48:31 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Oshie. 12/10 please enjoy (vid by @cat... NaN NaN NaN https://vine.co/v/iw9hUFAMerV 12 10 Oshie None None None None
1258 710283270106132480 NaN NaN 2016-03-17 01:55:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Gunner. He's a Figamus Newton. King of... NaN NaN NaN https://twitter.com/dog_rates/status/710283270... 11 10 Gunner None None None None
1259 710272297844797440 NaN NaN 2016-03-17 01:11:26 +0000 <a href="http://twitter.com/download/iphone" r... We 👏🏻 only 👏🏻 rate 👏🏻 dogs. Pls stop sending i... NaN NaN NaN https://twitter.com/dog_rates/status/710272297... 11 10 infuriating None None None None
1260 710269109699739648 NaN NaN 2016-03-17 00:58:46 +0000 <a href="http://twitter.com/download/iphone" r... The squad is back for St. Patrick's Day! ☘ 💚\n... NaN NaN NaN https://twitter.com/dog_rates/status/710269109... 13 10 None None None None None
1261 710153181850935296 NaN NaN 2016-03-16 17:18:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Lacy. She's tipping her hat to you. Da... NaN NaN NaN https://twitter.com/dog_rates/status/710153181... 11 10 Lacy None None None None
1262 710140971284037632 NaN NaN 2016-03-16 16:29:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Tater. His underbite is fierce af. Doe... NaN NaN NaN https://twitter.com/dog_rates/status/710140971... 8 10 Tater None None None None
1263 710117014656950272 NaN NaN 2016-03-16 14:54:24 +0000 <a href="http://twitter.com/download/iphone" r... This pupper got her hair chalked for her birth... NaN NaN NaN https://twitter.com/dog_rates/status/710117014... 11 10 None None None pupper None
1264 709918798883774466 NaN NaN 2016-03-16 01:46:45 +0000 <a href="http://twitter.com/download/iphone" r... Meet Watson. He's a Suzuki Tickleboop. Leader ... NaN NaN NaN https://twitter.com/dog_rates/status/709918798... 12 10 Watson None None None None
1265 709901256215666688 NaN NaN 2016-03-16 00:37:03 +0000 <a href="http://twitter.com/download/iphone" r... WeRateDogs stickers are here and they're 12/10... NaN NaN NaN http://goo.gl/ArWZfi,https://twitter.com/dog_r... 12 10 None None None None None
1266 709852847387627521 NaN NaN 2016-03-15 21:24:41 +0000 <a href="http://twitter.com/download/iphone" r... *lets out a tiny whimper and then collapses* .... NaN NaN NaN https://twitter.com/dog_rates/status/709852847... 12 10 None None None None None
1267 709566166965075968 NaN NaN 2016-03-15 02:25:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Olaf. He's gotta be rare. Seems sturdy... NaN NaN NaN https://twitter.com/dog_rates/status/709566166... 12 10 Olaf None None None None
1268 709556954897764353 NaN NaN 2016-03-15 01:48:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Cecil. She's a Gigglefloof Poofer. Out... NaN NaN NaN https://twitter.com/dog_rates/status/709556954... 12 10 Cecil None None None None
1269 709519240576036864 NaN NaN 2016-03-14 23:19:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Vince. He's a Gregorian Flapjeck. Whit... NaN NaN NaN https://twitter.com/dog_rates/status/709519240... 9 10 Vince None None None None
1270 709449600415961088 NaN NaN 2016-03-14 18:42:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Karma. She's just a head. Lost body durin... NaN NaN NaN https://twitter.com/dog_rates/status/709449600... 10 10 Karma None None None None
1271 709409458133323776 NaN NaN 2016-03-14 16:02:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Billy. He sensed a squirrel. 8/10 damn... NaN NaN NaN https://twitter.com/dog_rates/status/709409458... 8 10 Billy None None None None
1272 709225125749587968 NaN NaN 2016-03-14 03:50:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Walker. He's a Butternut Khalifa. Appe... NaN NaN NaN https://twitter.com/dog_rates/status/709225125... 11 10 Walker None None None None
1273 709207347839836162 NaN NaN 2016-03-14 02:39:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's trying on her prom dress.... NaN NaN NaN https://twitter.com/dog_rates/status/709207347... 11 10 Penny None None None None
1274 709198395643068416 NaN NaN 2016-03-14 02:04:08 +0000 <a href="http://twitter.com/download/iphone" r... From left to right:\nCletus, Jerome, Alejandro... NaN NaN NaN https://twitter.com/dog_rates/status/709198395... 45 50 None None None None None
1275 709179584944730112 NaN NaN 2016-03-14 00:49:23 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Sammy. He's in a tree. Very excited ab... NaN NaN NaN https://vine.co/v/iwAjdlEjwMl 13 10 Sammy None None None None
1276 709158332880297985 NaN NaN 2016-03-13 23:24:56 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rodney. He's a Ukranian Boomchicka. Outsi... NaN NaN NaN https://twitter.com/dog_rates/status/709158332... 10 10 Rodney None None None None
1277 709042156699303936 NaN NaN 2016-03-13 15:43:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Klevin. He's addicted to sandwiches (y... NaN NaN NaN https://twitter.com/dog_rates/status/709042156... 9 10 Klevin None None None None
1278 708853462201716736 NaN NaN 2016-03-13 03:13:29 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Lucy. She doesn't understand fetch. 8/... NaN NaN NaN https://vine.co/v/iHl2UDEBZ95 8 10 Lucy None None None None
1279 708845821941387268 NaN NaN 2016-03-13 02:43:08 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper with magic eyes. Not wearing a... NaN NaN NaN https://twitter.com/dog_rates/status/708845821... 9 10 None None None pupper None
1280 708834316713893888 NaN NaN 2016-03-13 01:57:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Malikai. He was rolling around having fun... NaN NaN NaN https://twitter.com/dog_rates/status/708834316... 10 10 Malikai None None None None
1281 708810915978854401 NaN NaN 2016-03-13 00:24:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Mister. He's a wonderful father to his... NaN NaN NaN https://twitter.com/dog_rates/status/708810915... 10 10 Mister None None None None
1282 708738143638450176 NaN NaN 2016-03-12 19:35:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Coco. She gets to stay on the Bachelor... NaN NaN NaN https://twitter.com/dog_rates/status/708738143... 11 10 Coco None None None None
1283 708711088997666817 NaN NaN 2016-03-12 17:47:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Smokey. He really likes tennis balls. ... NaN NaN NaN https://twitter.com/dog_rates/status/708711088... 11 10 Smokey None None None None
1284 708479650088034305 NaN NaN 2016-03-12 02:28:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Bear. He's a Beneboop Cumberclap. Extreme... NaN NaN NaN https://twitter.com/dog_rates/status/708479650... 13 10 Bear None None None None
1285 708469915515297792 NaN NaN 2016-03-12 01:49:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Bobble. He's a Croatian Galifianakis. ... NaN NaN NaN https://twitter.com/dog_rates/status/708469915... 11 10 Bobble None None None None
1286 708400866336894977 NaN NaN 2016-03-11 21:15:02 +0000 <a href="http://vine.co" rel="nofollow">Vine -... RT if you are as ready for summer as this pup ... NaN NaN NaN https://vine.co/v/iHFqnjKVbIQ 12 10 None None None None None
1287 708356463048204288 NaN NaN 2016-03-11 18:18:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. That is his castle. He protect... NaN NaN NaN https://twitter.com/dog_rates/status/708356463... 10 10 Oliver None None None None
1288 708349470027751425 NaN NaN 2016-03-11 17:50:48 +0000 <a href="http://twitter.com/download/iphone" r... This is River. He's changing the trumpet game.... NaN NaN NaN https://twitter.com/dog_rates/status/708349470... 11 10 River None None None None
1289 708149363256774660 NaN NaN 2016-03-11 04:35:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Jebberson. He's the reigning hide and ... NaN NaN NaN https://twitter.com/dog_rates/status/708149363... 10 10 Jebberson None None None None
1290 708130923141795840 NaN NaN 2016-03-11 03:22:23 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in non canines like this G... NaN NaN NaN https://twitter.com/dog_rates/status/708130923... 11 10 None None None None None
1291 708119489313951744 NaN NaN 2016-03-11 02:36:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. He basks in the glory of rebel... NaN NaN NaN https://twitter.com/dog_rates/status/708119489... 9 10 Cooper None None None None
1292 708109389455101952 NaN NaN 2016-03-11 01:56:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Remington. He was caught off guard by ... NaN NaN NaN https://twitter.com/dog_rates/status/708109389... 10 10 Remington None None None None
1293 708026248782585858 NaN NaN 2016-03-10 20:26:26 +0000 <a href="http://twitter.com/download/iphone" r... Everybody stop what you're doing and watch thi... NaN NaN NaN https://twitter.com/dog_rates/status/708026248... 13 10 None None None None None
1294 707995814724026368 NaN NaN 2016-03-10 18:25:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Farfle. He lost his back legs during t... NaN NaN NaN https://twitter.com/dog_rates/status/707995814... 12 10 Farfle None None None None
1295 707983188426153984 7.079801e+17 2.319108e+09 2016-03-10 17:35:20 +0000 <a href="http://twitter.com/download/iphone" r... @serial @MrRoles OH MY GOD I listened to all o... NaN NaN NaN NaN 12 10 None None None None None
1296 707969809498152960 NaN NaN 2016-03-10 16:42:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rufus. He's a Honeysuckle Firefox. Curly ... NaN NaN NaN https://twitter.com/dog_rates/status/707969809... 11 10 Rufus None None None None
1297 707776935007539200 NaN NaN 2016-03-10 03:55:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Sadie. She's a Bohemian Rhapsody. Rema... NaN NaN NaN https://twitter.com/dog_rates/status/707776935... 11 10 Sadie None None None None
1298 707741517457260545 NaN NaN 2016-03-10 01:35:01 +0000 <a href="http://twitter.com/download/iphone" r... When your roommate eats your leftover Chili's ... NaN NaN NaN https://twitter.com/dog_rates/status/707741517... 10 10 None None None None None
1299 707738799544082433 NaN NaN 2016-03-10 01:24:13 +0000 <a href="http://vine.co" rel="nofollow">Vine -... He's doing his best. 12/10 very impressive tha... NaN NaN NaN https://vine.co/v/hUvHKYrdb1d 12 10 None None None None None
1300 707693576495472641 NaN NaN 2016-03-09 22:24:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Jiminus. He's in a tub for some reason... NaN NaN NaN https://twitter.com/dog_rates/status/707693576... 7 10 Jiminus None None None None
1301 707629649552134146 NaN NaN 2016-03-09 18:10:30 +0000 <a href="http://vine.co" rel="nofollow">Vine -... We usually don't rate marshmallows but this on... NaN NaN NaN https://vine.co/v/iHhBOTl5p9z 10 10 None None None None None
1302 707610948723478529 NaN NaN 2016-03-09 16:56:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Harper. She scraped her elbow attempti... NaN NaN NaN https://twitter.com/dog_rates/status/707610948... 12 10 Harper None None None None
1303 707420581654872064 NaN NaN 2016-03-09 04:19:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Keurig. He's a rare dog. Laughs like a... NaN NaN NaN https://twitter.com/dog_rates/status/707420581... 4 10 Keurig None None None None
1304 707411934438625280 NaN NaN 2016-03-09 03:45:22 +0000 <a href="http://twitter.com/download/iphone" r... "I shall trip the big pupper with leash. Big p... NaN NaN NaN https://twitter.com/dog_rates/status/707411934... 11 10 None None None pupper None
1305 707387676719185920 NaN NaN 2016-03-09 02:08:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Clarkus. He's a Skinny Eastern Worcesters... NaN NaN NaN https://twitter.com/dog_rates/status/707387676... 10 10 Clarkus None None None None
1306 707377100785885184 NaN NaN 2016-03-09 01:26:57 +0000 <a href="http://twitter.com/download/iphone" r... This dog just brutally murdered a snowman. Cur... NaN NaN NaN https://twitter.com/dog_rates/status/707377100... 9 10 None None None None None
1307 707315916783140866 NaN NaN 2016-03-08 21:23:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Finnegus. He's trapped in a snow globe... NaN NaN NaN https://twitter.com/dog_rates/status/707315916... 10 10 Finnegus None None pupper None
1308 707297311098011648 NaN NaN 2016-03-08 20:09:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She can go from sweet to scary... NaN NaN NaN https://twitter.com/dog_rates/status/707297311... 10 10 Cassie None None None None
1309 707059547140169728 NaN NaN 2016-03-08 04:25:07 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Cupcake. She's an Icelandic Dippe... NaN NaN NaN https://twitter.com/dog_rates/status/707059547... 11 10 Cupcake None None None None
1310 707038192327901184 NaN NaN 2016-03-08 03:00:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Kathmandu. He sees every move you make... NaN NaN NaN https://twitter.com/dog_rates/status/707038192... 10 10 Kathmandu None None None None
1311 707021089608753152 NaN NaN 2016-03-08 01:52:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He's a Dasani Episcopalian. Go... NaN NaN NaN https://twitter.com/dog_rates/status/707021089... 12 10 Tucker None None None None
1312 707014260413456384 NaN NaN 2016-03-08 01:25:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Ellie. She requests to be carried arou... NaN NaN NaN https://twitter.com/dog_rates/status/707014260... 11 10 Ellie None None None None
1313 706904523814649856 NaN NaN 2016-03-07 18:09:06 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Ever seen a dog pet another dog? Both 13/10 tr... NaN NaN NaN https://vine.co/v/iXQAm5Lrgrh 13 10 None None None None None
1314 706901761596989440 NaN NaN 2016-03-07 17:58:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Elliot. He's blocking the roadway. Dow... NaN NaN NaN https://twitter.com/dog_rates/status/706901761... 3 10 Elliot None None None None
1315 706681918348251136 NaN NaN 2016-03-07 03:24:33 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Katie. She's a Mitsubishi Hufflep... NaN NaN NaN https://twitter.com/dog_rates/status/706681918... 12 10 Katie None None None None
1316 706644897839910912 NaN NaN 2016-03-07 00:57:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Shadow. She's tired of the responsibiliti... NaN NaN NaN https://twitter.com/dog_rates/status/706644897... 9 10 Shadow None None None None
1317 706593038911545345 NaN NaN 2016-03-06 21:31:22 +0000 <a href="http://twitter.com/download/iphone" r... Here's a sneak peek of me on spring break. 10/... NaN NaN NaN https://twitter.com/dog_rates/status/706593038... 10 10 None None None None None
1318 706538006853918722 NaN NaN 2016-03-06 17:52:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver (pronounced "Ricardo"). He's a ... NaN NaN NaN https://twitter.com/dog_rates/status/706538006... 11 10 Oliver None None None None
1319 706516534877929472 NaN NaN 2016-03-06 16:27:23 +0000 <a href="http://twitter.com/download/iphone" r... Please enjoy this pup in a cooler. Permanently... NaN NaN NaN https://twitter.com/dog_rates/status/706516534... 12 10 None None None None None
1320 706346369204748288 NaN NaN 2016-03-06 05:11:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. She's a Beneboom Cumberwiggle. 1... NaN NaN NaN https://twitter.com/dog_rates/status/706346369... 12 10 Koda None None None None
1321 706310011488698368 NaN NaN 2016-03-06 02:46:44 +0000 <a href="http://twitter.com/download/iphone" r... Here's a very sleepy pupper. Thinks it's an ai... NaN NaN NaN https://twitter.com/dog_rates/status/706310011... 12 10 None None None pupper None
1322 706291001778950144 NaN NaN 2016-03-06 01:31:11 +0000 <a href="http://twitter.com/download/iphone" r... When you're just relaxin and having a swell ti... NaN NaN NaN https://twitter.com/dog_rates/status/706291001... 11 10 None None None None None
1323 706265994973601792 NaN NaN 2016-03-05 23:51:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Kara. She's been trying to solve that ... NaN NaN NaN https://twitter.com/dog_rates/status/706265994... 11 10 Kara None None None None
1324 706169069255446529 NaN NaN 2016-03-05 17:26:40 +0000 <a href="http://twitter.com/download/iphone" r... He was doing his best. 12/10 I'll be his lawye... NaN NaN NaN https://twitter.com/wgnnews/status/70616592080... 12 10 None None None None None
1325 706166467411222528 NaN NaN 2016-03-05 17:16:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Dexter. He's a shy pup. Doesn't bark m... NaN NaN NaN https://twitter.com/dog_rates/status/706166467... 7 10 Dexter None None None None
1326 706153300320784384 NaN NaN 2016-03-05 16:24:01 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Layla. She's giving you a standing ova... NaN NaN NaN https://vine.co/v/iXidJXBJ3P9 13 10 Layla None None None None
1327 705975130514706432 NaN NaN 2016-03-05 04:36:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Adele. Her tongue flies out of her mou... NaN NaN NaN https://twitter.com/dog_rates/status/705975130... 10 10 Adele None None pupper None
1328 705970349788291072 NaN NaN 2016-03-05 04:17:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She's a Venetian Kerploof. Suppo... NaN NaN NaN https://twitter.com/dog_rates/status/705970349... 12 10 Lucy None None None None
1329 705898680587526145 NaN NaN 2016-03-04 23:32:15 +0000 <a href="http://twitter.com/download/iphone" r... Meet Max. He's a Fallopian Cephalopuff. Eyes a... NaN NaN NaN https://twitter.com/dog_rates/status/705898680... 10 10 Max None None None None
1330 705786532653883392 7.032559e+17 4.196984e+09 2016-03-04 16:06:36 +0000 <a href="http://twitter.com/download/iphone" r... Seriously, add us 🐶 11/10 for sad wet pupper h... NaN NaN NaN https://twitter.com/dog_rates/status/705786532... 11 10 None None None pupper None
1331 705591895322394625 NaN NaN 2016-03-04 03:13:11 +0000 <a href="http://twitter.com/download/iphone" r... "Ma'am, for the last time, I'm not authorized ... NaN NaN NaN https://twitter.com/dog_rates/status/705591895... 11 10 None None None None None
1332 705475953783398401 NaN NaN 2016-03-03 19:32:29 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Zara. She found a sandal and coul... NaN NaN NaN https://twitter.com/dog_rates/status/705475953... 12 10 Zara None None None None
1333 705442520700944385 NaN NaN 2016-03-03 17:19:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. He only wakes up to switch gea... NaN NaN NaN https://twitter.com/dog_rates/status/705442520... 12 10 Cooper None None None None
1334 705428427625635840 NaN NaN 2016-03-03 16:23:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Ambrose. He's an Alfalfa Ballyhoo. Dra... NaN NaN NaN https://twitter.com/dog_rates/status/705428427... 11 10 Ambrose None None pupper None
1335 705239209544720384 NaN NaN 2016-03-03 03:51:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimothy. He lost his body during the t... NaN NaN NaN https://twitter.com/dog_rates/status/705239209... 11 10 Jimothy None None None None
1336 705223444686888960 NaN NaN 2016-03-03 02:49:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Bode. He's a heavy sleeper. 9/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/705223444... 9 10 Bode None None None None
1337 705102439679201280 NaN NaN 2016-03-02 18:48:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Terrenth. He just stubbed his toe. 10/... NaN NaN NaN https://twitter.com/dog_rates/status/705102439... 10 10 Terrenth None None None None
1338 705066031337840642 NaN NaN 2016-03-02 16:23:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Reese. He's a Chilean Sohcahtoa. Loves... NaN NaN NaN https://twitter.com/dog_rates/status/705066031... 12 10 Reese None None None None
1339 704871453724954624 6.671522e+17 4.196984e+09 2016-03-02 03:30:25 +0000 <a href="http://twitter.com/download/iphone" r... I found a forest Pipsy. 12/10 https://t.co/mIQ... NaN NaN NaN https://twitter.com/dog_rates/status/704871453... 12 10 None None None None None
1340 704859558691414016 NaN NaN 2016-03-02 02:43:09 +0000 <a href="http://twitter.com/download/iphone" r... Here is a heartbreaking scene of an incredible... NaN NaN NaN https://twitter.com/dog_rates/status/704859558... 10 10 a None None pupper None
1341 704847917308362754 NaN NaN 2016-03-02 01:56:53 +0000 <a href="http://twitter.com/download/iphone" r... "Yes hi could I get a number 4 with no pickles... NaN NaN NaN https://twitter.com/dog_rates/status/704847917... 12 10 None None None None None
1342 704819833553219584 NaN NaN 2016-03-02 00:05:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Chesterson. He's a Bolivian Scoop Dog.... NaN NaN NaN https://twitter.com/dog_rates/status/704819833... 7 10 Chesterson None None None None
1343 704761120771465216 NaN NaN 2016-03-01 20:11:59 +0000 <a href="http://twitter.com/download/iphone" r... This pupper killed this great white in an epic... NaN NaN NaN https://twitter.com/dog_rates/status/704761120... 13 10 None None None pupper None
1344 704499785726889984 NaN NaN 2016-03-01 02:53:32 +0000 <a href="http://twitter.com/download/iphone" r... When you wake up from a long nap and have no i... NaN NaN NaN https://twitter.com/dog_rates/status/704499785... 12 10 None None None None None
1345 704491224099647488 7.044857e+17 2.878549e+07 2016-03-01 02:19:31 +0000 <a href="http://twitter.com/download/iphone" r... 13/10 hero af\n@ABC NaN NaN NaN NaN 13 10 None None None None None
1346 704480331685040129 NaN NaN 2016-03-01 01:36:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lucia. She's a Cumulonimbus Floofmallow. ... NaN NaN NaN https://twitter.com/dog_rates/status/704480331... 11 10 Lucia None None None None
1347 704364645503647744 NaN NaN 2016-02-29 17:56:32 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bisquick. He's a Beneplop Cumbers... NaN NaN NaN https://twitter.com/dog_rates/status/704364645... 12 10 Bisquick None None None None
1348 704347321748819968 NaN NaN 2016-02-29 16:47:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralphson. He's very confused. Wonderin... NaN NaN NaN https://twitter.com/dog_rates/status/704347321... 10 10 Ralphson None None pupper None
1349 704134088924532736 NaN NaN 2016-02-29 02:40:23 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This sneezy pupper is just adorable af. 12/10 ... NaN NaN NaN https://vine.co/v/igW2OEwu9vg 12 10 None None None pupper None
1350 704113298707505153 NaN NaN 2016-02-29 01:17:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stanley. He's an inverted Uzbekistani wat... NaN NaN NaN https://twitter.com/dog_rates/status/704113298... 8 10 Stanley None None None None
1351 704054845121142784 NaN NaN 2016-02-28 21:25:30 +0000 <a href="http://twitter.com/download/iphone" r... Here is a whole flock of puppers. 60/50 I'll ... NaN NaN NaN https://twitter.com/dog_rates/status/704054845... 60 50 a None None None None
1352 703774238772166656 NaN NaN 2016-02-28 02:50:28 +0000 <a href="http://twitter.com/download/iphone" r... "YOU CAN'T HANDLE THE TRUTH" both 10/10 https:... NaN NaN NaN https://twitter.com/dog_rates/status/703774238... 10 10 None None None None None
1353 703769065844768768 NaN NaN 2016-02-28 02:29:55 +0000 <a href="http://twitter.com/download/iphone" r... When you're trying to watch your favorite tv s... NaN NaN NaN https://twitter.com/dog_rates/status/703769065... 10 10 None None None None None
1354 703631701117943808 NaN NaN 2016-02-27 17:24:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. Based on this picture she's at ... NaN NaN NaN https://twitter.com/dog_rates/status/703631701... 11 10 Bella None None None None
1355 703611486317502464 NaN NaN 2016-02-27 16:03:45 +0000 <a href="http://twitter.com/download/iphone" r... Meet Scooter. He's experiencing the pupper equ... NaN NaN NaN https://twitter.com/dog_rates/status/703611486... 10 10 Scooter None None pupper None
1356 703425003149250560 7.030419e+17 4.196984e+09 2016-02-27 03:42:44 +0000 <a href="http://twitter.com/download/iphone" r... Really guys? Again? I know this is a rare Alba... NaN NaN NaN https://twitter.com/dog_rates/status/703425003... 9 10 None None None None None
1357 703407252292673536 NaN NaN 2016-02-27 02:32:12 +0000 <a href="http://twitter.com/download/iphone" r... This pupper doesn't understand gates. 10/10 so... NaN NaN NaN https://twitter.com/dog_rates/status/703407252... 10 10 None None None pupper None
1358 703382836347330562 NaN NaN 2016-02-27 00:55:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He's a West Side Niddlewog. M... NaN NaN NaN https://twitter.com/dog_rates/status/703382836... 12 10 Charlie None None None None
1359 703356393781329922 NaN NaN 2016-02-26 23:10:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Socks. That water pup w the super legs... NaN NaN NaN https://twitter.com/dog_rates/status/703356393... 9 10 Socks None None None None
1360 703268521220972544 NaN NaN 2016-02-26 17:20:56 +0000 <a href="http://twitter.com/download/iphone" r... Happy Friday here's a sleepy pupper 12/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/703268521... 12 10 None None None pupper None
1361 703079050210877440 NaN NaN 2016-02-26 04:48:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Butternut Cumberfloof. It's not wind... NaN NaN NaN https://twitter.com/dog_rates/status/703079050... 11 10 a None None None None
1362 703041949650034688 NaN NaN 2016-02-26 02:20:37 +0000 <a href="http://twitter.com/download/iphone" r... This is an East African Chalupa Seal. We only ... NaN NaN NaN https://twitter.com/dog_rates/status/703041949... 10 10 an None None None None
1363 702932127499816960 NaN NaN 2016-02-25 19:04:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Chip. He's an Upper West Nile Pantaloo... NaN NaN NaN https://twitter.com/dog_rates/status/702932127... 6 10 Chip None None None None
1364 702899151802126337 NaN NaN 2016-02-25 16:53:11 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Say hello to Luna. Her tongue is malfunctionin... NaN NaN NaN https://vine.co/v/i6iIrBwnTFI 12 10 Luna None None None None
1365 702684942141153280 NaN NaN 2016-02-25 02:42:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She's sick of these bullshit gen... NaN NaN NaN https://twitter.com/dog_rates/status/702684942... 11 10 Lucy None None None None
1366 702671118226825216 NaN NaN 2016-02-25 01:47:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rambo &amp; Kiwi. Rambo's the pup with th... NaN NaN NaN https://twitter.com/dog_rates/status/702671118... 10 10 Rambo None None None None
1367 702598099714314240 NaN NaN 2016-02-24 20:56:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Sansa. She's gotten too big for her ch... NaN NaN NaN https://twitter.com/dog_rates/status/702598099... 11 10 Sansa None None pupper None
1368 702539513671897089 NaN NaN 2016-02-24 17:04:07 +0000 <a href="http://twitter.com/download/iphone" r... This is a Wild Tuscan Poofwiggle. Careful not ... NaN NaN NaN https://twitter.com/dog_rates/status/702539513... 12 10 a None None None None
1369 702332542343577600 NaN NaN 2016-02-24 03:21:41 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Rudy. He's going to be a star. 13/10 t... NaN NaN NaN https://vine.co/v/irlDujgwOjd 13 10 Rudy None None None None
1370 702321140488925184 NaN NaN 2016-02-24 02:36:23 +0000 <a href="http://twitter.com/download/iphone" r... Please enjoy this picture as much as I did. 12... NaN NaN NaN https://twitter.com/dog_rates/status/702321140... 12 10 None None None None None
1371 702276748847800320 NaN NaN 2016-02-23 23:39:59 +0000 <a href="http://twitter.com/download/iphone" r... "AND IIIIIIIIIIIEIIIIIIIIIIIII WILL ALWAYS LOV... NaN NaN NaN https://twitter.com/dog_rates/status/702276748... 11 10 None None None None None
1372 702217446468493312 NaN NaN 2016-02-23 19:44:20 +0000 <a href="http://twitter.com/download/iphone" r... I know it's tempting, but please stop sending ... NaN NaN NaN https://twitter.com/dog_rates/status/702217446... 9 10 None None None None None
1373 701981390485725185 NaN NaN 2016-02-23 04:06:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Fiji. She's a Powdered Stegafloof. Ver... NaN NaN NaN https://twitter.com/dog_rates/status/701981390... 12 10 Fiji None None None None
1374 701952816642965504 NaN NaN 2016-02-23 02:12:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rilo. He's a Northern Curly Ticonderoga. ... NaN NaN NaN https://twitter.com/dog_rates/status/701952816... 11 10 Rilo None None None None
1375 701889187134500865 NaN NaN 2016-02-22 21:59:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Bilbo. He's not emotionally prepared t... NaN NaN NaN https://twitter.com/dog_rates/status/701889187... 11 10 Bilbo None None None None
1376 701805642395348998 NaN NaN 2016-02-22 16:27:58 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Please pray for this pupper. Nothing wrong wit... NaN NaN NaN https://vine.co/v/ivV6Y37mH5Z 11 10 None None None pupper None
1377 701601587219795968 NaN NaN 2016-02-22 02:57:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Coopson. He's a Blingin Schnitzel. Bui... NaN NaN NaN https://twitter.com/dog_rates/status/701601587... 10 10 Coopson None None None None
1378 701570477911896070 NaN NaN 2016-02-22 00:53:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Yoda. He's a Zimbabwean Rutabaga. Frea... NaN NaN NaN https://twitter.com/dog_rates/status/701570477... 9 10 Yoda None None None None
1379 701545186879471618 NaN NaN 2016-02-21 23:13:01 +0000 <a href="http://twitter.com/download/iphone" r... Meet Millie. She's practicing her dive form fo... NaN NaN NaN https://twitter.com/dog_rates/status/701545186... 10 10 Millie None None pupper None
1380 701214700881756160 NaN NaN 2016-02-21 01:19:47 +0000 <a href="http://twitter.com/download/iphone" r... I'm not sure what's happening here, but it's p... NaN NaN NaN https://twitter.com/dog_rates/status/701214700... 12 10 None None None None None
1381 700890391244103680 NaN NaN 2016-02-20 03:51:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Chet. He's dapper af. His owners want ... NaN NaN NaN https://twitter.com/dog_rates/status/700890391... 11 10 Chet None None None None
1382 700864154249383937 NaN NaN 2016-02-20 02:06:50 +0000 <a href="http://twitter.com/download/iphone" r... "Pupper is a present to world. Here is a bow f... NaN NaN NaN https://twitter.com/dog_rates/status/700864154... 12 10 a None None pupper None
1383 700847567345688576 NaN NaN 2016-02-20 01:00:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Crouton. He's a Galapagos Boonwiddle. Has... NaN NaN NaN https://twitter.com/dog_rates/status/700847567... 10 10 Crouton None None None None
1384 700796979434098688 NaN NaN 2016-02-19 21:39:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Daniel. He's a neat pup. Exotic af. Cu... NaN NaN NaN https://twitter.com/dog_rates/status/700796979... 7 10 Daniel None None None None
1385 700747788515020802 NaN NaN 2016-02-19 18:24:26 +0000 <a href="http://twitter.com/download/iphone" r... We only rate dogs. Pls stop sending in non-can... NaN NaN NaN https://twitter.com/dog_rates/status/700747788... 11 10 very None None None None
1386 700518061187723268 NaN NaN 2016-02-19 03:11:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Vincent. He's the man your girl is wit... NaN NaN NaN https://twitter.com/dog_rates/status/700518061... 10 10 Vincent None None None None
1387 700505138482569216 NaN NaN 2016-02-19 02:20:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Kaia. She's just cute as hell. 12/10 I... NaN NaN NaN https://twitter.com/dog_rates/status/700505138... 12 10 Kaia None None None None
1388 700462010979500032 NaN NaN 2016-02-18 23:28:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Murphy. He's a mini golden retriever. ... NaN NaN NaN https://twitter.com/dog_rates/status/700462010... 6 10 Murphy None None None None
1389 700167517596164096 NaN NaN 2016-02-18 03:58:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Dotsy. She's stuck as hell. 10/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/700167517... 10 10 Dotsy None None None None
1390 700151421916807169 NaN NaN 2016-02-18 02:54:41 +0000 <a href="http://twitter.com/download/iphone" r... If a pupper gave that to me I'd probably start... NaN NaN NaN https://twitter.com/dog_rates/status/700151421... 11 10 None None None pupper None
1391 700143752053182464 NaN NaN 2016-02-18 02:24:13 +0000 <a href="http://twitter.com/download/iphone" r... When it's Janet from accounting's birthday but... NaN NaN NaN https://twitter.com/dog_rates/status/700143752... 10 10 None None None pupper None
1392 700062718104104960 NaN NaN 2016-02-17 21:02:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Eazy-E. He's colorful af. Must be rare... NaN NaN NaN https://twitter.com/dog_rates/status/700062718... 6 10 Eazy None None None None
1393 700029284593901568 NaN NaN 2016-02-17 18:49:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Coops. His ship is taking on water. So... NaN NaN NaN https://twitter.com/dog_rates/status/700029284... 10 10 Coops None None None None
1394 700002074055016451 NaN NaN 2016-02-17 17:01:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Thumas. He covered himself in nanners ... NaN NaN NaN https://twitter.com/dog_rates/status/700002074... 9 10 Thumas None None None None
1395 699801817392291840 NaN NaN 2016-02-17 03:45:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. He began to tear up when his b... NaN NaN NaN https://twitter.com/dog_rates/status/699801817... 11 10 Cooper None None pupper None
1396 699788877217865730 NaN NaN 2016-02-17 02:54:04 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Nala. She's a Freckled High Brusc... NaN NaN NaN https://twitter.com/dog_rates/status/699788877... 12 10 Nala None None None None
1397 699779630832685056 NaN NaN 2016-02-17 02:17:19 +0000 <a href="http://twitter.com/download/iphone" r... Take all my money. 10/10 https://t.co/B28ebc5LzQ NaN NaN NaN https://twitter.com/dog_rates/status/699779630... 10 10 None None None None None
1398 699775878809702401 NaN NaN 2016-02-17 02:02:25 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fillup. Spaghetti is his main weakness. A... NaN NaN NaN https://twitter.com/dog_rates/status/699775878... 11 10 Fillup None None None None
1399 699691744225525762 NaN NaN 2016-02-16 20:28:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Dave. He's a tropical pup. Short lil l... NaN NaN NaN https://twitter.com/dog_rates/status/699691744... 5 10 Dave None None None None
1400 699446877801091073 NaN NaN 2016-02-16 04:15:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He's undercover in all these p... NaN NaN NaN https://twitter.com/dog_rates/status/699446877... 12 10 Archie None None None None
1401 699434518667751424 NaN NaN 2016-02-16 03:25:58 +0000 <a href="http://twitter.com/download/iphone" r... I know this is a tad late but here's a wonderf... NaN NaN NaN https://twitter.com/dog_rates/status/699434518... 12 10 None None None pupper None
1402 699423671849451520 NaN NaN 2016-02-16 02:42:52 +0000 <a href="http://twitter.com/download/iphone" r... "Don't ever talk to me or my son again." ...bo... NaN NaN NaN https://twitter.com/dog_rates/status/699423671... 10 10 None None None None None
1403 699413908797464576 NaN NaN 2016-02-16 02:04:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Miley. She's a Scandinavian Hollabackgirl... NaN NaN NaN https://twitter.com/dog_rates/status/699413908... 11 10 Miley None None None None
1404 699370870310113280 NaN NaN 2016-02-15 23:13:03 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Calbert. He doesn't have enough l... NaN NaN NaN https://twitter.com/dog_rates/status/699370870... 11 10 Calbert None None None None
1405 699323444782047232 NaN NaN 2016-02-15 20:04:36 +0000 <a href="http://twitter.com/download/iphone" r... "I'm bathing the children what do you want?" ... NaN NaN NaN https://twitter.com/dog_rates/status/699323444... 10 10 None None None None None
1406 699088579889332224 NaN NaN 2016-02-15 04:31:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Charl. He's a bully. Chucks that dumbb... NaN NaN NaN https://twitter.com/dog_rates/status/699088579... 3 10 Charl None None None None
1407 699079609774645248 NaN NaN 2016-02-15 03:55:41 +0000 <a href="http://twitter.com/download/iphone" r... Meet Reagan. He's a Persnicketus Derpson. Grea... NaN NaN NaN https://twitter.com/dog_rates/status/699079609... 8 10 Reagan None None None None
1408 699072405256409088 NaN NaN 2016-02-15 03:27:04 +0000 <a href="http://twitter.com/download/iphone" r... ERMAHGERD 12/10 please enjoy https://t.co/7WrA... NaN NaN NaN https://twitter.com/dog_rates/status/699072405... 12 10 None None None None None
1409 699060279947165696 NaN NaN 2016-02-15 02:38:53 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Yukon. He pukes rainbows. 12/10 magica... NaN NaN NaN https://vine.co/v/inlmMHxtqDD 12 10 Yukon None None None None
1410 699036661657767936 NaN NaN 2016-02-15 01:05:02 +0000 <a href="http://twitter.com/download/iphone" r... HAPPY V-DAY FROM YOUR FAV PUPPER SQUAD 13/10 f... NaN NaN NaN https://twitter.com/dog_rates/status/699036661... 13 10 None None None pupper None
1411 698989035503689728 NaN NaN 2016-02-14 21:55:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliver. He does toe touches in his sle... NaN NaN NaN https://twitter.com/dog_rates/status/698989035... 13 10 Oliver None None None None
1412 698953797952008193 NaN NaN 2016-02-14 19:35:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet CeCe. She wanted to take a selfie before ... NaN NaN NaN https://twitter.com/dog_rates/status/698953797... 11 10 CeCe None None None None
1413 698907974262222848 NaN NaN 2016-02-14 16:33:40 +0000 <a href="http://twitter.com/download/iphone" r... This dog is never sure if he's doing the right... NaN NaN NaN https://twitter.com/dog_rates/status/698907974... 10 10 None None None None None
1414 698710712454139905 NaN NaN 2016-02-14 03:29:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Cuddles. He's not entirely sure how do... NaN NaN NaN https://twitter.com/dog_rates/status/698710712... 10 10 Cuddles None None None None
1415 698703483621523456 NaN NaN 2016-02-14 03:01:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Rusty. He has no respect for POULTRY p... NaN NaN NaN https://twitter.com/dog_rates/status/698703483... 7 10 Rusty None None None None
1416 698635131305795584 NaN NaN 2016-02-13 22:29:29 +0000 <a href="http://twitter.com/download/iphone" r... Here we are witnessing five Guatemalan Birch F... NaN NaN NaN https://twitter.com/dog_rates/status/698635131... 12 10 None None None None None
1417 698549713696649216 NaN NaN 2016-02-13 16:50:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Claude. He's trying to be seductive bu... NaN NaN NaN https://twitter.com/dog_rates/status/698549713... 9 10 Claude None None None None
1418 698355670425473025 NaN NaN 2016-02-13 03:59:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jessiga. She's a Tasmanian McCringlebe... NaN NaN NaN https://twitter.com/dog_rates/status/698355670... 10 10 Jessiga None None None None
1419 698342080612007937 NaN NaN 2016-02-13 03:05:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Maximus. He's training for the tetherb... NaN NaN NaN https://twitter.com/dog_rates/status/698342080... 11 10 Maximus None None None None
1420 698262614669991936 NaN NaN 2016-02-12 21:49:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Franklin. He's a yoga master. Trying t... NaN NaN NaN https://twitter.com/dog_rates/status/698262614... 11 10 Franklin None None None None
1421 698195409219559425 NaN NaN 2016-02-12 17:22:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Beau &amp; Wilbur. Wilbur stole Beau's be... NaN NaN NaN https://twitter.com/dog_rates/status/698195409... 9 10 Beau None None None None
1422 698178924120031232 NaN NaN 2016-02-12 16:16:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Lily. She accidentally dropped all her... NaN NaN NaN https://twitter.com/dog_rates/status/698178924... 10 10 Lily None None None None
1423 697995514407682048 NaN NaN 2016-02-12 04:07:53 +0000 <a href="http://twitter.com/download/iphone" r... "Dammit hooman quit playin I jus wanna wheat t... NaN NaN NaN https://twitter.com/dog_rates/status/697995514... 11 10 None None None None None
1424 697990423684476929 NaN NaN 2016-02-12 03:47:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Doug. He's a Draconian Jabbawockee. Ra... NaN NaN NaN https://twitter.com/dog_rates/status/697990423... 11 10 Doug None None None None
1425 697943111201378304 NaN NaN 2016-02-12 00:39:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Cassie. She goes door to door trying t... NaN NaN NaN https://twitter.com/dog_rates/status/697943111... 10 10 Cassie None None None None
1426 697881462549430272 NaN NaN 2016-02-11 20:34:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Carter. He wakes up in the morning and... NaN NaN NaN https://twitter.com/dog_rates/status/697881462... 10 10 Carter None None None None
1427 697630435728322560 NaN NaN 2016-02-11 03:57:11 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Pls make sure ur dogs have gone through some b... NaN NaN NaN https://vine.co/v/in7ZzHPKzWz 8 10 None None None None None
1428 697616773278015490 NaN NaN 2016-02-11 03:02:54 +0000 <a href="http://twitter.com/download/iphone" r... This pupper doubles as a hallway rug. Very rar... NaN NaN NaN https://twitter.com/dog_rates/status/697616773... 11 10 None None None pupper None
1429 697596423848730625 NaN NaN 2016-02-11 01:42:02 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper with a piece of pizza. Two of ... NaN NaN NaN https://twitter.com/dog_rates/status/697596423... 11 10 None None None pupper None
1430 697575480820686848 NaN NaN 2016-02-11 00:18:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Ole. He's not sure how to gravity. 8/1... NaN NaN NaN https://twitter.com/dog_rates/status/697575480... 8 10 Ole None None None None
1431 697516214579523584 NaN NaN 2016-02-10 20:23:19 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Say hello to Pherb. He does parkour. 9/10 http... NaN NaN NaN https://vine.co/v/i1LriMBmX6W 9 10 Pherb None None None None
1432 697482927769255936 NaN NaN 2016-02-10 18:11:03 +0000 <a href="http://twitter.com/download/iphone" r... Meet Blipson. He's a Doowap Hufflepuff. That U... NaN NaN NaN https://twitter.com/dog_rates/status/697482927... 11 10 Blipson None None None None
1433 697463031882764288 NaN NaN 2016-02-10 16:51:59 +0000 <a href="http://twitter.com/download/iphone" r... Happy Wednesday here's a bucket of pups. 44/40... NaN NaN NaN https://twitter.com/dog_rates/status/697463031... 44 40 None None None None None
1434 697270446429966336 NaN NaN 2016-02-10 04:06:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Bentley. He got stuck on his 3rd homew... NaN NaN NaN https://twitter.com/dog_rates/status/697270446... 10 10 Bentley None None None None
1435 697259378236399616 NaN NaN 2016-02-10 03:22:44 +0000 <a href="http://twitter.com/download/iphone" r... Please stop sending in saber-toothed tigers. T... NaN NaN NaN https://twitter.com/dog_rates/status/697259378... 8 10 getting None None None None
1436 697255105972801536 NaN NaN 2016-02-10 03:05:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Charlie. He likes to kiss all the big mil... NaN NaN NaN https://twitter.com/dog_rates/status/697255105... 10 10 Charlie None None None None
1437 697242256848379904 NaN NaN 2016-02-10 02:14:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Oakley. He has a massive tumor growing... NaN NaN NaN https://twitter.com/dog_rates/status/697242256... 10 10 Oakley None None None None
1438 696900204696625153 NaN NaN 2016-02-09 03:35:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Rosie. She's a Benebark Cumberpatch. S... NaN NaN NaN https://twitter.com/dog_rates/status/696900204... 12 10 Rosie None None None None
1439 696894894812565505 NaN NaN 2016-02-09 03:14:25 +0000 <a href="http://twitter.com/download/iphone" r... These two pirates crashed their ship and don't... NaN NaN NaN https://twitter.com/dog_rates/status/696894894... 9 10 None None None None None
1440 696886256886657024 NaN NaN 2016-02-09 02:40:05 +0000 <a href="http://twitter.com/download/iphone" r... Guys I found the dog from Up. 12/10 https://t.... NaN NaN NaN https://twitter.com/dog_rates/status/696886256... 12 10 None None None None None
1441 696877980375769088 NaN NaN 2016-02-09 02:07:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Misty. She's in a predicament. Not sur... NaN NaN NaN https://twitter.com/dog_rates/status/696877980... 9 10 Misty None None pupper None
1442 696754882863349760 NaN NaN 2016-02-08 17:58:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Reptar. He specifically asked for his ... NaN NaN NaN https://twitter.com/dog_rates/status/696754882... 10 10 Reptar None None None None
1443 696744641916489729 NaN NaN 2016-02-08 17:17:22 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Klevin. He doesn't want his family bra... NaN NaN NaN https://vine.co/v/i1wrljBUjAu 10 10 Klevin None None None None
1444 696713835009417216 NaN NaN 2016-02-08 15:14:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Trevith. He's a Swiss Mountain Roadwoo... NaN NaN NaN https://twitter.com/dog_rates/status/696713835... 9 10 Trevith None None pupper None
1445 696518437233913856 NaN NaN 2016-02-08 02:18:30 +0000 <a href="http://twitter.com/download/iphone" r... Oh my god 10/10 for every little hot dog pupper NaN NaN NaN NaN 10 10 None None None pupper None
1446 696490539101908992 6.964887e+17 4.196984e+09 2016-02-08 00:27:39 +0000 <a href="http://twitter.com/download/iphone" r... After reading the comments I may have overesti... NaN NaN NaN NaN 1 10 None None None None None
1447 696488710901260288 NaN NaN 2016-02-08 00:20:23 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 revolutionary af https://t.co/zKzq4nIY86 NaN NaN NaN https://twitter.com/dog_rates/status/696488710... 12 10 None None None None None
1448 696405997980676096 NaN NaN 2016-02-07 18:51:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Berb. He just found out that they have... NaN NaN NaN https://twitter.com/dog_rates/status/696405997... 7 10 Berb None None None None
1449 696100768806522880 NaN NaN 2016-02-06 22:38:50 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This poor pupper has been stuck in a vortex si... NaN NaN NaN https://vine.co/v/i1KWj0vbvA9 10 10 None None None pupper None
1450 695816827381944320 NaN NaN 2016-02-06 03:50:33 +0000 <a href="http://twitter.com/download/iphone" r... Here's a dog enjoying a sunset. 11/10 would tr... NaN NaN NaN https://twitter.com/dog_rates/status/695816827... 11 10 None None None None None
1451 695794761660297217 NaN NaN 2016-02-06 02:22:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Wyatt. His throne is modeled after him... NaN NaN NaN https://twitter.com/dog_rates/status/695794761... 13 10 Wyatt None None None None
1452 695767669421768709 6.753494e+17 4.196984e+09 2016-02-06 00:35:13 +0000 <a href="http://twitter.com/download/iphone" r... If you are aware of who is making these please... NaN NaN NaN https://twitter.com/dog_rates/status/695767669... 13 10 None None None None None
1453 695629776980148225 NaN NaN 2016-02-05 15:27:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Calvin. He's proof that degrees mean abso... NaN NaN NaN https://twitter.com/dog_rates/status/695629776... 8 10 Calvin None None None None
1454 695446424020918272 NaN NaN 2016-02-05 03:18:42 +0000 <a href="http://twitter.com/download/iphone" r... We normally don't rate unicorns but this one h... NaN NaN NaN https://twitter.com/dog_rates/status/695446424... 12 10 None None None None None
1455 695409464418041856 NaN NaN 2016-02-05 00:51:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Bob. He just got back from his job int... NaN NaN NaN https://twitter.com/dog_rates/status/695409464... 10 10 Bob None None None None
1456 695314793360662529 NaN NaN 2016-02-04 18:35:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Colin. He really likes green beans. It... NaN NaN NaN https://twitter.com/dog_rates/status/695314793... 10 10 Colin None None None None
1457 695095422348574720 NaN NaN 2016-02-04 04:03:57 +0000 <a href="http://twitter.com/download/iphone" r... This is just a beautiful pupper good shit evol... NaN NaN NaN https://twitter.com/dog_rates/status/695095422... 12 10 just None None pupper None
1458 695074328191332352 NaN NaN 2016-02-04 02:40:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Lorenzo. He's educated af. Just gradua... NaN NaN NaN https://twitter.com/dog_rates/status/695074328... 11 10 Lorenzo None None pupper None
1459 695064344191721472 NaN NaN 2016-02-04 02:00:27 +0000 <a href="http://twitter.com/download/iphone" r... This may be the greatest video I've ever been ... NaN NaN NaN https://twitter.com/dog_rates/status/695064344... 4 10 None None None None None
1460 695051054296211456 NaN NaN 2016-02-04 01:07:39 +0000 <a href="http://twitter.com/download/iphone" r... Meet Brian (pronounced "Kirk"). He's not amuse... NaN NaN NaN https://twitter.com/dog_rates/status/695051054... 6 10 Brian None None None None
1461 694925794720792577 NaN NaN 2016-02-03 16:49:55 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Please only send in dogs. This t-rex is very s... NaN NaN NaN https://vine.co/v/iJvUqWQ166L 5 10 None None None None None
1462 694905863685980160 NaN NaN 2016-02-03 15:30:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Archie. He's a Bisquick Taj Mapaw. Too... NaN NaN NaN https://twitter.com/dog_rates/status/694905863... 10 10 Archie None None None None
1463 694669722378485760 NaN NaN 2016-02-02 23:52:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Phil. He's an important dog. Can contr... NaN NaN NaN https://twitter.com/dog_rates/status/694669722... 12 10 Phil None None None None
1464 694356675654983680 6.706684e+17 4.196984e+09 2016-02-02 03:08:26 +0000 <a href="http://twitter.com/download/iphone" r... This pupper only appears through the hole of a... NaN NaN NaN https://twitter.com/dog_rates/status/694356675... 10 10 None None None pupper None
1465 694352839993344000 NaN NaN 2016-02-02 02:53:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Oliviér. He takes killer selfies. Has a d... NaN NaN NaN https://twitter.com/dog_rates/status/694352839... 10 10 Oliviér None None None None
1466 694342028726001664 NaN NaN 2016-02-02 02:10:14 +0000 <a href="http://vine.co" rel="nofollow">Vine -... It's okay pup. This happens every time I liste... NaN NaN NaN https://vine.co/v/iJWKejYdLlh 11 10 None None None None None
1467 694329668942569472 NaN NaN 2016-02-02 01:21:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet Grady. He's very hungry. Too bad no one c... NaN NaN NaN https://twitter.com/dog_rates/status/694329668... 9 10 Grady None None pupper None
1468 694206574471057408 NaN NaN 2016-02-01 17:11:59 +0000 <a href="http://twitter.com/download/iphone" r... "Martha come take a look at this. I'm so fed u... NaN NaN NaN https://twitter.com/dog_rates/status/694206574... 10 10 None None None None None
1469 694183373896572928 NaN NaN 2016-02-01 15:39:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. She realized mid hug that she's ... NaN NaN NaN https://twitter.com/dog_rates/status/694183373... 9 10 Lola None None None None
1470 694001791655137281 NaN NaN 2016-02-01 03:38:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Chester. He's a Benefloof Cumberbark. ... NaN NaN NaN https://twitter.com/dog_rates/status/694001791... 11 10 Chester None None None None
1471 693993230313091072 NaN NaN 2016-02-01 03:04:14 +0000 <a href="http://vine.co" rel="nofollow">Vine -... These lil fellas are the best of friends. 12/1... NaN NaN NaN https://vine.co/v/i5ETazP5hrm 12 10 None None None None None
1472 693942351086120961 NaN NaN 2016-01-31 23:42:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Kobe. He's a Speckled Rorschach. Reque... NaN NaN NaN https://twitter.com/dog_rates/status/693942351... 10 10 Kobe None None None None
1473 693647888581312512 NaN NaN 2016-01-31 04:11:58 +0000 <a href="http://twitter.com/download/iphone" r... What kind of person sends in a pic without a d... NaN NaN NaN https://twitter.com/dog_rates/status/693647888... 7 10 None None None None None
1474 693644216740769793 6.936422e+17 4.196984e+09 2016-01-31 03:57:23 +0000 <a href="http://twitter.com/download/iphone" r... BREAKING PUPDATE: I've just been notified that... NaN NaN NaN NaN 10 10 None None None None None
1475 693642232151285760 NaN NaN 2016-01-31 03:49:30 +0000 <a href="http://twitter.com/download/iphone" r... Meet Freddery. He's a Westminster Toblerone. S... NaN NaN NaN https://twitter.com/dog_rates/status/693642232... 9 10 Freddery None None None None
1476 693629975228977152 NaN NaN 2016-01-31 03:00:47 +0000 <a href="http://twitter.com/download/iphone" r... This pupper is afraid of its own feet. 12/10 w... NaN NaN NaN https://twitter.com/dog_rates/status/693629975... 12 10 None None None pupper None
1477 693622659251335168 NaN NaN 2016-01-31 02:31:43 +0000 <a href="http://twitter.com/download/iphone" r... When you keepin the popcorn bucket in your lap... NaN NaN NaN https://twitter.com/dog_rates/status/693622659... 10 10 None None None None None
1478 693590843962331137 NaN NaN 2016-01-31 00:25:18 +0000 <a href="http://twitter.com/download/iphone" r... Meet Phil. He's big af. Currently destroying t... NaN NaN NaN https://twitter.com/dog_rates/status/693590843... 3 10 Phil None None pupper None
1479 693582294167244802 6.935722e+17 1.198989e+09 2016-01-30 23:51:19 +0000 <a href="http://twitter.com/download/iphone" r... Personally I'd give him an 11/10. Not sure why... NaN NaN NaN NaN 11 10 None None None None None
1480 693486665285931008 NaN NaN 2016-01-30 17:31:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Lincoln. He doesn't understand his new... NaN NaN NaN https://twitter.com/dog_rates/status/693486665... 11 10 Lincoln None None None None
1481 693280720173801472 NaN NaN 2016-01-30 03:52:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Sadie and her 2 pups Shebang &amp; Ruf... NaN NaN NaN https://twitter.com/dog_rates/status/693280720... 10 10 Sadie None None None None
1482 693267061318012928 NaN NaN 2016-01-30 02:58:42 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Oscar. He can wave. Friendly af. 12/10... NaN NaN NaN https://vine.co/v/i5n2irFUYWv 12 10 Oscar None None None None
1483 693262851218264065 NaN NaN 2016-01-30 02:41:58 +0000 <a href="http://twitter.com/download/iphone" r... I hope you guys enjoy this beautiful snowy pup... NaN NaN NaN https://twitter.com/dog_rates/status/693262851... 11 10 None None None pupper None
1484 693231807727280129 NaN NaN 2016-01-30 00:38:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Bodie. He's not proud of what he did, ... NaN NaN NaN https://twitter.com/dog_rates/status/693231807... 9 10 Bodie None None None None
1485 693155686491000832 NaN NaN 2016-01-29 19:36:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Dunkin. He can only see when he's wet ... NaN NaN NaN https://twitter.com/dog_rates/status/693155686... 12 10 Dunkin None None None None
1486 693109034023534592 NaN NaN 2016-01-29 16:30:45 +0000 <a href="http://twitter.com/download/iphone" r... "Thank you friend that was a swell petting" 11... NaN NaN NaN https://twitter.com/dog_rates/status/693109034... 11 10 None None None None None
1487 693095443459342336 NaN NaN 2016-01-29 15:36:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Milo. He doesn't understand your fancy... NaN NaN NaN https://twitter.com/dog_rates/status/693095443... 10 10 Milo None None pupper None
1488 692919143163629568 NaN NaN 2016-01-29 03:56:12 +0000 <a href="http://twitter.com/download/iphone" r... Please only send in dogs. Don't submit other t... NaN NaN NaN https://twitter.com/dog_rates/status/692919143... 9 10 None None None None None
1489 692905862751522816 NaN NaN 2016-01-29 03:03:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Wally. He's being abducted by aliens. ... NaN NaN NaN https://twitter.com/dog_rates/status/692905862... 10 10 Wally None None pupper None
1490 692901601640583168 NaN NaN 2016-01-29 02:46:29 +0000 <a href="http://twitter.com/download/iphone" r... "Fuck the system" 10/10 https://t.co/N0OADmCnVV NaN NaN NaN https://twitter.com/dog_rates/status/692901601... 10 10 None None None None None
1491 692894228850999298 NaN NaN 2016-01-29 02:17:12 +0000 <a href="http://twitter.com/download/iphone" r... Meet Tupawc. He's actually a Christian rapper.... NaN NaN NaN https://twitter.com/dog_rates/status/692894228... 10 10 Tupawc None None None None
1492 692828166163931137 NaN NaN 2016-01-28 21:54:41 +0000 <a href="http://twitter.com/download/iphone" r... This pupper just descended from heaven. 12/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/692828166... 12 10 None None None pupper None
1493 692752401762250755 NaN NaN 2016-01-28 16:53:37 +0000 <a href="http://twitter.com/download/iphone" r... "Hello yes could I get one pupper to go please... NaN NaN NaN https://twitter.com/dog_rates/status/692752401... 13 10 None None None pupper None
1494 692568918515392513 NaN NaN 2016-01-28 04:44:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Chester. He's been guarding this pumpk... NaN NaN NaN https://twitter.com/dog_rates/status/692568918... 12 10 Chester None None None None
1495 692535307825213440 NaN NaN 2016-01-28 02:30:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Amber. She's a Fetty Woof. 10/10 would... NaN NaN NaN https://twitter.com/dog_rates/status/692535307... 10 10 Amber None None None None
1496 692530551048294401 NaN NaN 2016-01-28 02:12:04 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Cody. He's been to like 80 countr... NaN NaN NaN https://twitter.com/dog_rates/status/692530551... 10 10 Cody None None None None
1497 692423280028966913 6.924173e+17 4.196984e+09 2016-01-27 19:05:49 +0000 <a href="http://twitter.com/download/iphone" r... PUPDATE: just noticed this dog has some extra ... NaN NaN NaN NaN 9 10 None None None None None
1498 692417313023332352 NaN NaN 2016-01-27 18:42:06 +0000 <a href="http://twitter.com/download/iphone" r... Meet Herschel. He's slightly bigger than ur av... NaN NaN NaN https://twitter.com/dog_rates/status/692417313... 7 10 Herschel None None pupper None
1499 692187005137076224 NaN NaN 2016-01-27 03:26:56 +0000 <a href="http://twitter.com/download/iphone" r... This is a rare Arctic Wubberfloof. Unamused by... NaN NaN NaN https://twitter.com/dog_rates/status/692187005... 12 10 a None None None None
1500 692158366030913536 NaN NaN 2016-01-27 01:33:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Edgar. He's a Sassafras Puggleflash. N... NaN NaN NaN https://twitter.com/dog_rates/status/692158366... 10 10 Edgar None None None None
1501 692142790915014657 6.920419e+17 4.196984e+09 2016-01-27 00:31:15 +0000 <a href="http://twitter.com/download/iphone" r... These are some pictures of Teddy that further ... NaN NaN NaN https://twitter.com/dog_rates/status/692142790... 13 10 None None None None None
1502 692041934689402880 NaN NaN 2016-01-26 17:50:29 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Teddy. His head is too heavy. 13/10 (v... NaN NaN NaN https://vine.co/v/iiI3wmqXYmA 13 10 Teddy None None None None
1503 692017291282812928 NaN NaN 2016-01-26 16:12:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Kingsley Wellensworth III. He owns 7 r... NaN NaN NaN https://twitter.com/dog_rates/status/692017291... 9 10 Kingsley None None None None
1504 691820333922455552 NaN NaN 2016-01-26 03:09:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Brockly. He's an uber driver. Falls as... NaN NaN NaN https://twitter.com/dog_rates/status/691820333... 8 10 Brockly None None None None
1505 691793053716221953 NaN NaN 2016-01-26 01:21:31 +0000 <a href="http://vine.co" rel="nofollow">Vine -... We usually don't rate penguins but this one is... NaN NaN NaN https://vine.co/v/OTTVAKw6YlW 10 10 None None None None None
1506 691756958957883396 NaN NaN 2016-01-25 22:58:05 +0000 <a href="http://twitter.com/download/iphone" r... THE BRITISH ARE COMING\nTHE BRITISH ARE COMING... NaN NaN NaN https://twitter.com/dog_rates/status/691756958... 10 10 None None None None None
1507 691675652215414786 NaN NaN 2016-01-25 17:35:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Richie and Plip. They are the best of ... NaN NaN NaN https://twitter.com/dog_rates/status/691675652... 10 10 Richie None None None None
1508 691483041324204033 NaN NaN 2016-01-25 04:49:38 +0000 <a href="http://twitter.com/download/iphone" r... When bae says they can't go out but you see th... NaN NaN NaN https://twitter.com/dog_rates/status/691483041... 5 10 None None None None None
1509 691459709405118465 NaN NaN 2016-01-25 03:16:56 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Leo. He's a Fallopian Puffalope. ... NaN NaN NaN https://twitter.com/dog_rates/status/691459709... 12 10 Leo None None None None
1510 691444869282295808 NaN NaN 2016-01-25 02:17:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Bailey. She likes flowers. 12/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/691444869... 12 10 Bailey None None None None
1511 691416866452082688 NaN NaN 2016-01-25 00:26:41 +0000 <a href="http://twitter.com/download/iphone" r... I present to you... Dog Jesus. 13/10 (he could... NaN NaN NaN https://twitter.com/dog_rates/status/691416866... 13 10 None None None None None
1512 691321916024623104 NaN NaN 2016-01-24 18:09:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Molly. She's a Peruvian Niddlewog. Lov... NaN NaN NaN https://twitter.com/dog_rates/status/691321916... 11 10 Molly None None None None
1513 691096613310316544 NaN NaN 2016-01-24 03:14:07 +0000 <a href="http://twitter.com/download/iphone" r... Here we see one dog giving a puptalk to anothe... NaN NaN NaN https://twitter.com/dog_rates/status/691096613... 11 10 None None None None None
1514 691090071332753408 NaN NaN 2016-01-24 02:48:07 +0000 <a href="http://twitter.com/download/iphone" r... Happy Saturday here's a dog in a mailbox. 12/1... NaN NaN NaN https://twitter.com/dog_rates/status/691090071... 12 10 None None None None None
1515 690989312272396288 NaN NaN 2016-01-23 20:07:44 +0000 <a href="http://vine.co" rel="nofollow">Vine -... We've got a doggy down. Requesting backup. 12/... NaN NaN NaN https://vine.co/v/iOZKZEU2nHq 12 10 None None None None None
1516 690959652130045952 NaN NaN 2016-01-23 18:09:53 +0000 <a href="http://twitter.com/download/iphone" r... This golden is happy to refute the soft mouth ... NaN NaN NaN https://twitter.com/dog_rates/status/690959652... 11 10 None None None None None
1517 690938899477221376 NaN NaN 2016-01-23 16:47:25 +0000 <a href="http://twitter.com/download/iphone" r... She thought the sunset was pretty, but I thoug... NaN NaN NaN https://twitter.com/dog_rates/status/690938899... 10 10 None None None None None
1518 690932576555528194 NaN NaN 2016-01-23 16:22:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Buddy. He's testing out the water. Suc... NaN NaN NaN https://twitter.com/dog_rates/status/690932576... 12 10 Buddy None None None None
1519 690735892932222976 NaN NaN 2016-01-23 03:20:44 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Peaches. She's a Dingleberry Zand... NaN NaN NaN https://twitter.com/dog_rates/status/690735892... 13 10 Peaches None None None None
1520 690728923253055490 NaN NaN 2016-01-23 02:53:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Vinscent. He was just questioned about... NaN NaN NaN https://twitter.com/dog_rates/status/690728923... 8 10 Vinscent None None None None
1521 690690673629138944 NaN NaN 2016-01-23 00:21:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Cedrick. He's a spookster. Did me a di... NaN NaN NaN https://twitter.com/dog_rates/status/690690673... 10 10 Cedrick None None None None
1522 690649993829576704 NaN NaN 2016-01-22 21:39:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Hazel. She's a gymnast. Training hard ... NaN NaN NaN https://twitter.com/dog_rates/status/690649993... 11 10 Hazel None None None None
1523 690607260360429569 6.903413e+17 4.670367e+08 2016-01-22 18:49:36 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 @LightningHoltt NaN NaN NaN NaN 12 10 None None None None None
1524 690597161306841088 NaN NaN 2016-01-22 18:09:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Lolo. She's America af. Behind in scie... NaN NaN NaN https://twitter.com/dog_rates/status/690597161... 11 10 Lolo None None None None
1525 690400367696297985 NaN NaN 2016-01-22 05:07:29 +0000 <a href="http://twitter.com/download/iphone" r... This is Eriq. His friend just reminded him of ... NaN NaN NaN https://twitter.com/dog_rates/status/690400367... 10 10 Eriq None None None None
1526 690374419777196032 NaN NaN 2016-01-22 03:24:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Phred. He's an Albanian Flepperkush. T... NaN NaN NaN https://twitter.com/dog_rates/status/690374419... 11 10 Phred None None None None
1527 690360449368465409 NaN NaN 2016-01-22 02:28:52 +0000 <a href="http://twitter.com/download/iphone" r... Stop sending in lobsters. This is the final wa... NaN NaN NaN https://twitter.com/dog_rates/status/690360449... 9 10 the None None None None
1528 690348396616552449 NaN NaN 2016-01-22 01:40:58 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Oddie. He's trying to communicate. 12/... NaN NaN NaN https://vine.co/v/iejBWerY9X2 12 10 Oddie None None None None
1529 690248561355657216 NaN NaN 2016-01-21 19:04:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Maxwell. That's his moped. He rents it... NaN NaN NaN https://twitter.com/dog_rates/status/690248561... 11 10 Maxwell None None None None
1530 690021994562220032 NaN NaN 2016-01-21 04:03:58 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Geoff (pronounced "Kyle"). He acc... NaN NaN NaN https://twitter.com/dog_rates/status/690021994... 10 10 Geoff None None None None
1531 690015576308211712 NaN NaN 2016-01-21 03:38:27 +0000 <a href="http://twitter.com/download/iphone" r... This pupper can only sleep on shoes. It's a cr... NaN NaN NaN https://twitter.com/dog_rates/status/690015576... 12 10 None None None pupper None
1532 690005060500217858 NaN NaN 2016-01-21 02:56:40 +0000 <a href="http://twitter.com/download/iphone" r... "I'm the only one that ever does anything in t... NaN NaN NaN https://twitter.com/dog_rates/status/690005060... 10 10 None None None None None
1533 689999384604450816 NaN NaN 2016-01-21 02:34:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Covach. He's trying to melt the snow. ... NaN NaN NaN https://twitter.com/dog_rates/status/689999384... 10 10 Covach None None None None
1534 689993469801164801 NaN NaN 2016-01-21 02:10:37 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Here we are witnessing a rare High Stepping Al... NaN NaN NaN https://vine.co/v/ienexVMZgi5 12 10 None None floofer None None
1535 689977555533848577 NaN NaN 2016-01-21 01:07:23 +0000 <a href="http://twitter.com/download/iphone" r... Happy Wednesday here's a pup wearing a beret. ... NaN NaN NaN https://twitter.com/dog_rates/status/689977555... 12 10 None None None None None
1536 689905486972461056 NaN NaN 2016-01-20 20:21:00 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Gizmo. He's quite the pupper. Con... NaN NaN NaN https://twitter.com/dog_rates/status/689905486... 11 10 Gizmo None None pupper None
1537 689877686181715968 NaN NaN 2016-01-20 18:30:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Durg. He's trying to conquer his fear ... NaN NaN NaN https://twitter.com/dog_rates/status/689877686... 9 10 Durg None None None None
1538 689835978131935233 NaN NaN 2016-01-20 15:44:48 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fynn &amp; Taco. Fynn is an all-powerful ... NaN NaN NaN https://twitter.com/dog_rates/status/689835978... 11 10 Fynn None None None None
1539 689661964914655233 NaN NaN 2016-01-20 04:13:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Luca. He's a Butternut Scooperfloof. Glor... NaN NaN NaN https://twitter.com/dog_rates/status/689661964... 12 10 Luca None None None None
1540 689659372465688576 NaN NaN 2016-01-20 04:03:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Ricky. He's being escorted out of the ... NaN NaN NaN https://twitter.com/dog_rates/status/689659372... 8 10 Ricky None None None None
1541 689623661272240129 NaN NaN 2016-01-20 01:41:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She's terrified of the stuffed b... NaN NaN NaN https://twitter.com/dog_rates/status/689623661... 10 10 Lucy None None pupper None
1542 689599056876867584 NaN NaN 2016-01-20 00:03:21 +0000 <a href="http://twitter.com/download/iphone" r... Here we see 33 dogs posing for a picture. All ... NaN NaN NaN https://twitter.com/dog_rates/status/689599056... 11 10 None None None None None
1543 689557536375177216 NaN NaN 2016-01-19 21:18:22 +0000 <a href="http://twitter.com/download/iphone" r... Downright majestic af 12/10 https://t.co/WFh2F... NaN NaN NaN https://twitter.com/dog_rates/status/689557536... 12 10 None None None None None
1544 689517482558820352 NaN NaN 2016-01-19 18:39:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Carl. He just wants to make sure you'r... NaN NaN NaN https://twitter.com/dog_rates/status/689517482... 12 10 Carl None None None None
1545 689289219123089408 NaN NaN 2016-01-19 03:32:10 +0000 <a href="http://twitter.com/download/iphone" r... Someone sent me this without any context and e... NaN NaN NaN https://twitter.com/dog_rates/status/689289219... 13 10 None None None None None
1546 689283819090870273 NaN NaN 2016-01-19 03:10:43 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Chipson. He's aerodynamic af. No ... NaN NaN NaN https://twitter.com/dog_rates/status/689283819... 9 10 Chipson None None None None
1547 689280876073582592 NaN NaN 2016-01-19 02:59:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Herald. He wants you to know he could ... NaN NaN NaN https://twitter.com/dog_rates/status/689280876... 10 10 Herald None None None None
1548 689275259254616065 NaN NaN 2016-01-19 02:36:42 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lucky. He was showing his friends an extr... NaN NaN NaN https://twitter.com/dog_rates/status/689275259... 10 10 Lucky None None None None
1549 689255633275777024 NaN NaN 2016-01-19 01:18:43 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Ferg. He swallowed a chainsaw. 1 like ... NaN NaN NaN https://vine.co/v/iOL792n5hz2 10 10 Ferg None None None None
1550 689154315265683456 NaN NaN 2016-01-18 18:36:07 +0000 <a href="http://twitter.com/download/iphone" r... We normally don't rate birds but I feel bad co... NaN NaN NaN https://twitter.com/dog_rates/status/689154315... 9 10 None None None None None
1551 689143371370250240 NaN NaN 2016-01-18 17:52:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Trip. He likes wearing costumes that aren... NaN NaN NaN https://twitter.com/dog_rates/status/689143371... 10 10 Trip None None pupper None
1552 688916208532455424 NaN NaN 2016-01-18 02:49:58 +0000 <a href="http://twitter.com/download/iphone" r... This pupper just wants to say hello. 11/10 wou... NaN NaN NaN https://twitter.com/dog_rates/status/688916208... 11 10 None None None pupper None
1553 688908934925697024 NaN NaN 2016-01-18 02:21:04 +0000 <a href="http://twitter.com/download/iphone" r... Meet Clarence. He does parkour. 8/10 very tale... NaN NaN NaN https://twitter.com/dog_rates/status/688908934... 8 10 Clarence None None None None
1554 688898160958271489 NaN NaN 2016-01-18 01:38:15 +0000 <a href="http://twitter.com/download/iphone" r... When you have a ton of work to do but then rem... NaN NaN NaN https://twitter.com/dog_rates/status/688898160... 10 10 None None None None None
1555 688894073864884227 NaN NaN 2016-01-18 01:22:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Hamrick. He's covered in corn flakes. ... NaN NaN NaN https://twitter.com/dog_rates/status/688894073... 7 10 Hamrick None None pupper None
1556 688828561667567616 NaN NaN 2016-01-17 21:01:41 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Brad. His car probably has a spoi... NaN NaN NaN https://twitter.com/dog_rates/status/688828561... 9 10 Brad None None None None
1557 688804835492233216 NaN NaN 2016-01-17 19:27:24 +0000 <a href="http://twitter.com/download/iphone" r... When you stumble but recover quickly cause you... NaN NaN NaN https://twitter.com/dog_rates/status/688804835... 12 10 None None None None None
1558 688789766343622656 NaN NaN 2016-01-17 18:27:32 +0000 <a href="http://twitter.com/download/iphone" r... Meet Pubert. He's a Kerplunk Rumplestilt. Cann... NaN NaN NaN https://twitter.com/dog_rates/status/688789766... 8 10 Pubert None None None None
1559 688547210804498433 NaN NaN 2016-01-17 02:23:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Frönq. He got caught stealing a waffle... NaN NaN NaN https://twitter.com/dog_rates/status/688547210... 9 10 Frönq None None None None
1560 688519176466644993 NaN NaN 2016-01-17 00:32:18 +0000 <a href="http://twitter.com/download/iphone" r... This pupper is sprouting a flower out of her h... NaN NaN NaN https://twitter.com/dog_rates/status/688519176... 12 10 None None None pupper None
1561 688385280030670848 NaN NaN 2016-01-16 15:40:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's takes top-notch selfies. 1... NaN NaN NaN https://twitter.com/dog_rates/status/688385280... 12 10 Louis None None None None
1562 688211956440801280 NaN NaN 2016-01-16 04:11:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Derby. He's a superstar. 13/10 (vid by... NaN NaN NaN https://twitter.com/dog_rates/status/688211956... 13 10 Derby None None None None
1563 688179443353796608 NaN NaN 2016-01-16 02:02:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Lizzie. She's about to fist bump the l... NaN NaN NaN https://twitter.com/dog_rates/status/688179443... 10 10 Lizzie None None pupper None
1564 688116655151435777 NaN NaN 2016-01-15 21:52:49 +0000 <a href="http://twitter.com/download/iphone" r... Please send dogs. I'm tired of seeing other st... NaN NaN NaN https://twitter.com/dog_rates/status/688116655... 10 10 None None None None None
1565 688064179421470721 NaN NaN 2016-01-15 18:24:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Kilo. He's a Pouncing Brioche. Really ... NaN NaN NaN https://twitter.com/dog_rates/status/688064179... 11 10 Kilo None None None None
1566 687841446767013888 NaN NaN 2016-01-15 03:39:15 +0000 <a href="http://vine.co" rel="nofollow">Vine -... 13/10 I can't stop watching this (vid by @k8ly... NaN NaN NaN https://vine.co/v/iOWwUPH1hrw 13 10 None None None None None
1567 687826841265172480 NaN NaN 2016-01-15 02:41:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's a rollercoaster of emotion... NaN NaN NaN https://twitter.com/dog_rates/status/687826841... 12 10 Louis None None None None
1568 687818504314159109 NaN NaN 2016-01-15 02:08:05 +0000 <a href="http://twitter.com/download/iphone" r... With great pupper comes great responsibility. ... NaN NaN NaN https://twitter.com/dog_rates/status/687818504... 12 10 None None None pupper None
1569 687807801670897665 NaN NaN 2016-01-15 01:25:33 +0000 <a href="http://twitter.com/download/iphone" r... Meet Trooper &amp; Maya. Trooper protects Maya... NaN NaN NaN https://twitter.com/dog_rates/status/687807801... 11 10 Trooper None None None None
1570 687732144991551489 NaN NaN 2016-01-14 20:24:55 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Ember. That's the q-tip she owes money... NaN NaN NaN https://vine.co/v/iOuMphL5DBY 11 10 Ember None None None None
1571 687704180304273409 NaN NaN 2016-01-14 18:33:48 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Blakely. He thinks that's a hat. ... NaN NaN NaN https://twitter.com/dog_rates/status/687704180... 9 10 Blakely None None pupper None
1572 687664829264453632 NaN NaN 2016-01-14 15:57:26 +0000 <a href="http://twitter.com/download/iphone" r... Meet Opal. He's a Belgian Dijon Poofster. Upse... NaN NaN NaN https://twitter.com/dog_rates/status/687664829... 11 10 Opal None None None None
1573 687494652870668288 NaN NaN 2016-01-14 04:41:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Marq. He stole this car. 7/10 wtf Marq... NaN NaN NaN https://twitter.com/dog_rates/status/687494652... 7 10 Marq None None None None
1574 687480748861947905 NaN NaN 2016-01-14 03:45:57 +0000 <a href="http://twitter.com/download/iphone" r... Another magnificent photo. 12/10 https://t.co/... NaN NaN NaN https://twitter.com/dog_rates/status/687480748... 12 10 None None None None None
1575 687476254459715584 NaN NaN 2016-01-14 03:28:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Curtis. He's a fluffball. 11/10 would ... NaN NaN NaN https://twitter.com/dog_rates/status/687476254... 11 10 Curtis None None pupper None
1576 687460506001633280 NaN NaN 2016-01-14 02:25:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Kramer. He's a Picasso Tortellini. Tie... NaN NaN NaN https://twitter.com/dog_rates/status/687460506... 10 10 Kramer None None None None
1577 687399393394311168 NaN NaN 2016-01-13 22:22:41 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Barry. He's very fast. I hope he finds... NaN NaN NaN https://vine.co/v/iM2hLu9LU5i 10 10 Barry None None None None
1578 687317306314240000 NaN NaN 2016-01-13 16:56:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Tyrone. He's a leaf wizard. Self-motiv... NaN NaN NaN https://twitter.com/dog_rates/status/687317306... 11 10 Tyrone None None None None
1579 687312378585812992 NaN NaN 2016-01-13 16:36:55 +0000 <a href="http://twitter.com/download/iphone" r... "You got any games on your phone" 7/10 for inv... NaN NaN NaN https://twitter.com/dog_rates/status/687312378... 7 10 None None None pupper None
1580 687127927494963200 NaN NaN 2016-01-13 04:23:58 +0000 <a href="http://twitter.com/download/iphone" r... Meet Gordon. He's an asshole. 9/10 would still... NaN NaN NaN https://twitter.com/dog_rates/status/687127927... 9 10 Gordon None None None None
1581 687124485711986689 NaN NaN 2016-01-13 04:10:18 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Samson. He's a Firecracker Häagen... NaN NaN NaN https://twitter.com/dog_rates/status/687124485... 11 10 Samson None None None None
1582 687109925361856513 NaN NaN 2016-01-13 03:12:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Baxter. He looks like a fun dog. Prefe... NaN NaN NaN https://twitter.com/dog_rates/status/687109925... 11 10 Baxter None None None None
1583 687102708889812993 NaN NaN 2016-01-13 02:43:46 +0000 <a href="http://twitter.com/download/iphone" r... Army of water dogs here. None of them know whe... NaN NaN NaN https://twitter.com/dog_rates/status/687102708... 5 10 None None None None None
1584 687096057537363968 NaN NaN 2016-01-13 02:17:20 +0000 <a href="http://twitter.com/download/iphone" r... This pupper's New Year's resolution was to bec... NaN NaN NaN https://twitter.com/dog_rates/status/687096057... 11 10 None None None pupper None
1585 686947101016735744 NaN NaN 2016-01-12 16:25:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Jackson. He was specifically told not ... NaN NaN NaN https://twitter.com/dog_rates/status/686947101... 11 10 Jackson None None None None
1586 686760001961103360 NaN NaN 2016-01-12 04:01:58 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This pupper forgot how to walk. 12/10 happens ... NaN NaN NaN https://vine.co/v/iMvubwT260D 12 10 None None None pupper None
1587 686749460672679938 NaN NaN 2016-01-12 03:20:05 +0000 <a href="http://twitter.com/download/iphone" r... Strange pup here. Easily manipulated. Rather i... NaN NaN NaN https://twitter.com/dog_rates/status/686749460... 8 10 None None None None None
1588 686730991906516992 NaN NaN 2016-01-12 02:06:41 +0000 <a href="http://twitter.com/download/iphone" r... I just love this picture. 12/10 lovely af http... NaN NaN NaN https://twitter.com/dog_rates/status/686730991... 12 10 None None None None None
1589 686683045143953408 NaN NaN 2016-01-11 22:56:10 +0000 <a href="http://twitter.com/download/iphone" r... This is Mona. She's a Yarborough Splishnsplash... NaN NaN NaN https://twitter.com/dog_rates/status/686683045... 11 10 Mona None None pupper None
1590 686618349602762752 NaN NaN 2016-01-11 18:39:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Olivia. She just saw an adult wearing ... NaN NaN NaN https://twitter.com/dog_rates/status/686618349... 11 10 Olivia None None pupper None
1591 686606069955735556 NaN NaN 2016-01-11 17:50:18 +0000 <a href="http://twitter.com/download/iphone" r... Meet Horace. He was practicing his levitation,... NaN NaN NaN https://twitter.com/dog_rates/status/686606069... 10 10 Horace None None None None
1592 686394059078897668 NaN NaN 2016-01-11 03:47:50 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This pup's having a nightmare that he forgot t... NaN NaN NaN https://vine.co/v/iMqBebnOvav 12 10 None None None None None
1593 686386521809772549 NaN NaN 2016-01-11 03:17:53 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Crimson. He's a Speckled Winnebag... NaN NaN NaN https://twitter.com/dog_rates/status/686386521... 11 10 Crimson None None None None
1594 686377065986265092 NaN NaN 2016-01-11 02:40:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Birf. He thinks he's gone blind. 10/10 ve... NaN NaN NaN https://twitter.com/dog_rates/status/686377065... 10 10 Birf None None pupper None
1595 686358356425093120 NaN NaN 2016-01-11 01:25:58 +0000 <a href="http://twitter.com/download/iphone" r... Heartwarming scene here. Son reuniting w fathe... NaN NaN NaN https://twitter.com/dog_rates/status/686358356... 10 10 None None None None None
1596 686286779679375361 NaN NaN 2016-01-10 20:41:33 +0000 <a href="http://vine.co" rel="nofollow">Vine -... When bae calls your name from across the room.... NaN NaN NaN https://vine.co/v/iMZx6aDbExn 12 10 None None None None None
1597 686050296934563840 NaN NaN 2016-01-10 05:01:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Flávio. He's a Macedonian Poppycock. 9... NaN NaN NaN https://twitter.com/dog_rates/status/686050296... 11 10 Flávio None None None None
1598 686035780142297088 6.860340e+17 4.196984e+09 2016-01-10 04:04:10 +0000 <a href="http://twitter.com/download/iphone" r... Yes I do realize a rating of 4/20 would've bee... NaN NaN NaN NaN 4 20 None None None None None
1599 686034024800862208 NaN NaN 2016-01-10 03:57:12 +0000 <a href="http://twitter.com/download/iphone" r... Your fav crew is back and this time they're em... NaN NaN NaN https://twitter.com/dog_rates/status/686034024... 12 10 None None None None None
1600 686007916130873345 NaN NaN 2016-01-10 02:13:27 +0000 <a href="http://twitter.com/download/iphone" r... This pupper has a magical eye. 11/10 I can't s... NaN NaN NaN https://twitter.com/dog_rates/status/686007916... 11 10 None None None pupper None
1601 686003207160610816 NaN NaN 2016-01-10 01:54:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Hammond. He's a peculiar pup. Loves lo... NaN NaN NaN https://twitter.com/dog_rates/status/686003207... 3 10 Hammond None None None None
1602 685973236358713344 NaN NaN 2016-01-09 23:55:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Lorelei. She's contemplating her exist... NaN NaN NaN https://twitter.com/dog_rates/status/685973236... 11 10 Lorelei None None None None
1603 685943807276412928 NaN NaN 2016-01-09 21:58:42 +0000 <a href="http://twitter.com/download/iphone" r... This is the newly formed pupper a capella grou... NaN NaN NaN https://twitter.com/dog_rates/status/685943807... 8 10 the None None pupper None
1604 685906723014619143 NaN NaN 2016-01-09 19:31:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Olive. He's stuck in a sleeve. 9/10 da... NaN NaN NaN https://twitter.com/dog_rates/status/685906723... 9 10 Olive None None None None
1605 685681090388975616 6.855479e+17 4.196984e+09 2016-01-09 04:34:45 +0000 <a href="http://twitter.com/download/iphone" r... Jack deserves another round of applause. If yo... NaN NaN NaN NaN 14 10 None None None None None
1606 685667379192414208 NaN NaN 2016-01-09 03:40:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Marty. He has no idea what happened he... NaN NaN NaN https://twitter.com/dog_rates/status/685667379... 9 10 Marty None None pupper None
1607 685663452032069632 NaN NaN 2016-01-09 03:24:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Brooks. He's confused by the almighty bal... NaN NaN NaN https://twitter.com/dog_rates/status/685663452... 12 10 Brooks None None None None
1608 685641971164143616 NaN NaN 2016-01-09 01:59:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Otis. He just passed a cop while going... NaN NaN NaN https://twitter.com/dog_rates/status/685641971... 7 10 Otis None None pupper None
1609 685547936038666240 NaN NaN 2016-01-08 19:45:39 +0000 <a href="http://twitter.com/download/iphone" r... Everybody needs to read this. Jack is our firs... NaN NaN NaN https://twitter.com/dog_rates/status/685547936... 14 10 None None None pupper None
1610 685532292383666176 NaN NaN 2016-01-08 18:43:29 +0000 <a href="http://twitter.com/download/iphone" r... For the last time, WE. DO. NOT. RATE. BULBASAU... NaN NaN NaN https://twitter.com/dog_rates/status/685532292... 9 10 None None None None None
1611 685325112850124800 NaN NaN 2016-01-08 05:00:14 +0000 <a href="http://twitter.com/download/iphone" r... "Tristan do not speak to me with that kind of ... NaN NaN NaN https://twitter.com/dog_rates/status/685325112... 10 10 None None None None None
1612 685321586178670592 NaN NaN 2016-01-08 04:46:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Rocky. He sleeps like a psychopath. 10... NaN NaN NaN https://twitter.com/dog_rates/status/685321586... 10 10 Rocky None None None None
1613 685315239903100929 NaN NaN 2016-01-08 04:21:00 +0000 <a href="http://twitter.com/download/iphone" r... I would like everyone to appreciate this pup's... NaN NaN NaN https://twitter.com/dog_rates/status/685315239... 11 10 None None None None None
1614 685307451701334016 NaN NaN 2016-01-08 03:50:03 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Petrick. He's an Altostratus Floo... NaN NaN NaN https://twitter.com/dog_rates/status/685307451... 11 10 Petrick None floofer None None
1615 685268753634967552 NaN NaN 2016-01-08 01:16:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Hubertson. He's a Carmel Haberdashery.... NaN NaN NaN https://twitter.com/dog_rates/status/685268753... 10 10 Hubertson None None pupper None
1616 685198997565345792 NaN NaN 2016-01-07 20:39:06 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. That is his time machine. He's ... NaN NaN NaN https://twitter.com/dog_rates/status/685198997... 11 10 Alfie None None None None
1617 685169283572338688 NaN NaN 2016-01-07 18:41:01 +0000 <a href="http://twitter.com/download/iphone" r... Meet Gerbald. He just found out he's adopted. ... NaN NaN NaN https://twitter.com/dog_rates/status/685169283... 11 10 Gerbald None None pupper None
1618 684969860808454144 6.849598e+17 4.196984e+09 2016-01-07 05:28:35 +0000 <a href="http://twitter.com/download/iphone" r... For those who claim this is a goat, u are wron... NaN NaN NaN NaN 5 10 None None None None None
1619 684959798585110529 NaN NaN 2016-01-07 04:48:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's a neat dog. No legs (tragi... NaN NaN NaN https://twitter.com/dog_rates/status/684959798... 5 10 Jerry None None None None
1620 684940049151070208 NaN NaN 2016-01-07 03:30:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Oreo. She's a photographer and a model... NaN NaN NaN https://twitter.com/dog_rates/status/684940049... 12 10 Oreo None None None None
1621 684926975086034944 NaN NaN 2016-01-07 02:38:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Bruiser &amp; Charlie. They are the best ... NaN NaN NaN https://twitter.com/dog_rates/status/684926975... 11 10 Bruiser None None None None
1622 684914660081053696 NaN NaN 2016-01-07 01:49:14 +0000 <a href="http://twitter.com/download/iphone" r... "Hello yes I'll just get one of each color tha... NaN NaN NaN https://twitter.com/dog_rates/status/684914660... 12 10 None None None None None
1623 684902183876321280 NaN NaN 2016-01-07 00:59:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Perry. He's an Augustus Gloopster. Ver... NaN NaN NaN https://twitter.com/dog_rates/status/684902183... 11 10 Perry None None None None
1624 684880619965411328 NaN NaN 2016-01-06 23:33:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a basking dino pupper. Looks powe... NaN NaN NaN https://twitter.com/dog_rates/status/684880619... 5 10 None None None pupper None
1625 684830982659280897 NaN NaN 2016-01-06 20:16:44 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This little fella really hates stairs. Prefers... NaN NaN NaN https://vine.co/v/eEZXZI1rqxX 13 10 None None None pupper None
1626 684800227459624960 NaN NaN 2016-01-06 18:14:31 +0000 <a href="http://twitter.com/download/iphone" r... Meet Theodore. He's dapper as hell. Probably o... NaN NaN NaN https://twitter.com/dog_rates/status/684800227... 11 10 Theodore None None None None
1627 684594889858887680 NaN NaN 2016-01-06 04:38:35 +0000 <a href="http://twitter.com/download/iphone" r... "FOR THE LAST TIME I DON'T WANNA PLAY TWISTER ... NaN NaN NaN https://twitter.com/dog_rates/status/684594889... 10 10 None None None None None
1628 684588130326986752 NaN NaN 2016-01-06 04:11:43 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This pupper just got his first kiss. 12/10 he'... NaN NaN NaN https://vine.co/v/ihWIxntjtO7 12 10 None None None pupper None
1629 684567543613382656 NaN NaN 2016-01-06 02:49:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Bobby. He doesn't give a damn about pe... NaN NaN NaN https://twitter.com/dog_rates/status/684567543... 4 10 Bobby None None None None
1630 684538444857667585 6.844811e+17 4.196984e+09 2016-01-06 00:54:18 +0000 <a href="http://twitter.com/download/iphone" r... After watching this video, we've determined th... NaN NaN NaN https://twitter.com/dog_rates/status/684538444... 12 10 None None None None None
1631 684481074559381504 NaN NaN 2016-01-05 21:06:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Pippa. She's an Elfin High Feta. Compact ... NaN NaN NaN https://twitter.com/dog_rates/status/684481074... 10 10 Pippa None None None None
1632 684460069371654144 NaN NaN 2016-01-05 19:42:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeph. He's a Western Sagittarius Dookm... NaN NaN NaN https://twitter.com/dog_rates/status/684460069... 10 10 Jeph None None None None
1633 684241637099323392 NaN NaN 2016-01-05 05:14:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Obi. He got camera shy. 12/10 https://... NaN NaN NaN https://twitter.com/dog_rates/status/684241637... 12 10 Obi None None None None
1634 684225744407494656 6.842229e+17 4.196984e+09 2016-01-05 04:11:44 +0000 <a href="http://twitter.com/download/iphone" r... Two sneaky puppers were not initially seen, mo... NaN NaN NaN https://twitter.com/dog_rates/status/684225744... 143 130 None None None None None
1635 684222868335505415 NaN NaN 2016-01-05 04:00:18 +0000 <a href="http://twitter.com/download/iphone" r... Someone help the girl is being mugged. Several... NaN NaN NaN https://twitter.com/dog_rates/status/684222868... 121 110 None None None None None
1636 684200372118904832 NaN NaN 2016-01-05 02:30:55 +0000 <a href="http://twitter.com/download/iphone" r... Gang of fearless hoofed puppers here. Straight... NaN NaN NaN https://twitter.com/dog_rates/status/684200372... 6 10 None None None None None
1637 684195085588783105 NaN NaN 2016-01-05 02:09:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Tino. He really likes corndogs. 9/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/684195085... 9 10 Tino None None None None
1638 684188786104872960 NaN NaN 2016-01-05 01:44:52 +0000 <a href="http://twitter.com/download/iphone" r... "Yo Boomer I'm taking a selfie, grab your stic... NaN NaN NaN https://twitter.com/dog_rates/status/684188786... 10 10 None None None None None
1639 684177701129875456 NaN NaN 2016-01-05 01:00:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Kulet. She's very proud of the flower ... NaN NaN NaN https://twitter.com/dog_rates/status/684177701... 10 10 Kulet None None None None
1640 684147889187209216 NaN NaN 2016-01-04 23:02:22 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Sweets the English Bulldog. Waves back... NaN NaN NaN https://vine.co/v/ib2nTOEuuOI 12 10 Sweets None None pupper None
1641 684122891630342144 NaN NaN 2016-01-04 21:23:02 +0000 <a href="http://twitter.com/download/iphone" r... Heartwarming scene of two pups that want nothi... NaN NaN NaN https://twitter.com/dog_rates/status/684122891... 11 10 None None None None None
1642 684097758874210310 NaN NaN 2016-01-04 19:43:10 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Lupe. This is how she sleeps. 10/... NaN NaN NaN https://twitter.com/dog_rates/status/684097758... 10 10 Lupe None None None None
1643 683857920510050305 NaN NaN 2016-01-04 03:50:08 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sadie. She fell asleep on the beach and h... NaN NaN NaN https://twitter.com/dog_rates/status/683857920... 10 10 Sadie None None None None
1644 683852578183077888 NaN NaN 2016-01-04 03:28:54 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Tiger. He's a penbroke (little do... NaN NaN NaN https://twitter.com/dog_rates/status/683852578... 10 10 Tiger None None None None
1645 683849932751646720 NaN NaN 2016-01-04 03:18:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Jiminy. He's not the brightest dog. Ne... NaN NaN NaN https://twitter.com/dog_rates/status/683849932... 5 10 Jiminy None None None None
1646 683834909291606017 NaN NaN 2016-01-04 02:18:42 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a faulty pupper. Might need to rep... NaN NaN NaN https://twitter.com/dog_rates/status/683834909... 9 10 None None None pupper None
1647 683828599284170753 NaN NaN 2016-01-04 01:53:37 +0000 <a href="http://twitter.com/download/iphone" r... Breathtaking pupper here. Should be on the cov... NaN NaN NaN https://twitter.com/dog_rates/status/683828599... 12 10 None None None pupper None
1648 683773439333797890 NaN NaN 2016-01-03 22:14:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Buddy. He's gaining strength. Currentl... NaN NaN NaN https://twitter.com/dog_rates/status/683773439... 9 10 Buddy None None None None
1649 683742671509258241 NaN NaN 2016-01-03 20:12:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sebastian. He's a womanizer. Romantic af.... NaN NaN NaN https://twitter.com/dog_rates/status/683742671... 11 10 Sebastian None None None None
1650 683515932363329536 NaN NaN 2016-01-03 05:11:12 +0000 <a href="http://vine.co" rel="nofollow">Vine -... HEY PUP WHAT'S THE PART OF THE HUMAN BODY THAT... NaN NaN NaN https://vine.co/v/ibvnzrauFuV 11 10 None None None None None
1651 683498322573824003 NaN NaN 2016-01-03 04:01:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Griffin. He's desperate for both a phy... NaN NaN NaN https://twitter.com/dog_rates/status/683498322... 11 10 Griffin None None None None
1652 683481228088049664 NaN NaN 2016-01-03 02:53:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Banjo. He's a Peppercorn Shoop Da Whoop. ... NaN NaN NaN https://twitter.com/dog_rates/status/683481228... 11 10 Banjo None None pupper None
1653 683462770029932544 NaN NaN 2016-01-03 01:39:57 +0000 <a href="http://twitter.com/download/iphone" r... "Hello forest pupper I am house pupper welcome... NaN NaN NaN https://twitter.com/dog_rates/status/683462770... 8 10 None None None pupper None
1654 683449695444799489 NaN NaN 2016-01-03 00:47:59 +0000 <a href="http://twitter.com/download/iphone" r... I just want to be friends with this dog. Appea... NaN NaN NaN https://twitter.com/dog_rates/status/683449695... 10 10 None None None None None
1655 683391852557561860 NaN NaN 2016-01-02 20:58:09 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Jack (pronounced "Kevin"). He's a... NaN NaN NaN https://twitter.com/dog_rates/status/683391852... 11 10 Jack None None None None
1656 683357973142474752 NaN NaN 2016-01-02 18:43:31 +0000 <a href="http://twitter.com/download/iphone" r... "Have a seat, son. There are some things we ne... NaN NaN NaN https://twitter.com/dog_rates/status/683357973... 10 10 None None None None None
1657 683142553609318400 NaN NaN 2016-01-02 04:27:31 +0000 <a href="http://twitter.com/download/iphone" r... Meet Brandy. She's a member of the Bloods. Men... NaN NaN NaN https://twitter.com/dog_rates/status/683142553... 9 10 Brandy None None pupper None
1658 683111407806746624 NaN NaN 2016-01-02 02:23:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Larry. He thought the New Year's parti... NaN NaN NaN https://twitter.com/dog_rates/status/683111407... 10 10 Larry None None pupper None
1659 683098815881154561 NaN NaN 2016-01-02 01:33:43 +0000 <a href="http://twitter.com/download/iphone" r... aahhhhkslaldhwnxmzbbs 12/10 for being da smoos... NaN NaN NaN https://twitter.com/dog_rates/status/683098815... 12 10 None None None None None
1660 683078886620553216 NaN NaN 2016-01-02 00:14:32 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a nifty leaping pupper. Feet look ... NaN NaN NaN https://twitter.com/dog_rates/status/683078886... 9 10 None None None pupper None
1661 683030066213818368 NaN NaN 2016-01-01 21:00:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Lulu. She's contemplating all her unre... NaN NaN NaN https://twitter.com/dog_rates/status/683030066... 10 10 Lulu None None None None
1662 682962037429899265 NaN NaN 2016-01-01 16:30:13 +0000 <a href="http://twitter.com/download/iphone" r... This is Darrel. He just robbed a 7/11 and is i... NaN NaN NaN https://twitter.com/dog_rates/status/682962037... 7 11 Darrel None None None None
1663 682808988178739200 6.827884e+17 4.196984e+09 2016-01-01 06:22:03 +0000 <a href="http://twitter.com/download/iphone" r... I'm aware that I could've said 20/16, but here... NaN NaN NaN NaN 20 16 None None None None None
1664 682788441537560576 NaN NaN 2016-01-01 05:00:24 +0000 <a href="http://twitter.com/download/iphone" r... Happy New Year from your fav holiday squad! 🎉 ... NaN NaN NaN https://twitter.com/dog_rates/status/682788441... 12 10 None None None pupper None
1665 682750546109968385 NaN NaN 2016-01-01 02:29:49 +0000 <a href="http://twitter.com/download/iphone" r... Meet Taco. He's a speckled Garnier Fructis. Lo... NaN NaN NaN https://twitter.com/dog_rates/status/682750546... 9 10 Taco None None None None
1666 682697186228989953 NaN NaN 2015-12-31 22:57:47 +0000 <a href="http://twitter.com/download/iphone" r... NAAAAAAA ZAPENYAAAAA MABADI-CHIBAWAAA 12/10 ht... NaN NaN NaN https://twitter.com/dog_rates/status/682697186... 12 10 None None None None None
1667 682662431982772225 NaN NaN 2015-12-31 20:39:41 +0000 <a href="http://twitter.com/download/iphone" r... Meet Joey and Izzy. Joey only has one ear that... NaN NaN NaN https://twitter.com/dog_rates/status/682662431... 11 10 Joey None None None None
1668 682638830361513985 NaN NaN 2015-12-31 19:05:54 +0000 <a href="http://twitter.com/download/iphone" r... I have no words. Just a magnificent pup. 12/10... NaN NaN NaN https://twitter.com/dog_rates/status/682638830... 12 10 None None None None None
1669 682429480204398592 NaN NaN 2015-12-31 05:14:01 +0000 <a href="http://twitter.com/download/iphone" r... I know we joke around on here, but this is get... NaN NaN NaN https://twitter.com/dog_rates/status/682429480... 8 10 None None None None None
1670 682406705142087680 NaN NaN 2015-12-31 03:43:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Patrick. He's a bigass pupper. 7/10 ht... NaN NaN NaN https://twitter.com/dog_rates/status/682406705... 7 10 Patrick None None pupper None
1671 682393905736888321 NaN NaN 2015-12-31 02:52:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Kreg. He's riding an invisible jet ski... NaN NaN NaN https://twitter.com/dog_rates/status/682393905... 11 10 Kreg None None None None
1672 682389078323662849 NaN NaN 2015-12-31 02:33:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Brody. He's a Downton Abbey Falsetto. Add... NaN NaN NaN https://twitter.com/dog_rates/status/682389078... 9 10 Brody None None None None
1673 682303737705140231 NaN NaN 2015-12-30 20:54:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Todo. He's screaming because he doesn'... NaN NaN NaN https://twitter.com/dog_rates/status/682303737... 9 10 Todo None None None None
1674 682259524040966145 NaN NaN 2015-12-30 17:58:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He's an Iglesias Hufflepoof. Quite t... NaN NaN NaN https://twitter.com/dog_rates/status/682259524... 9 10 Jax None None None None
1675 682242692827447297 NaN NaN 2015-12-30 16:51:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Samson. He patrols his waters on the b... NaN NaN NaN https://twitter.com/dog_rates/status/682242692... 11 10 Samson None None None None
1676 682088079302213632 NaN NaN 2015-12-30 06:37:25 +0000 <a href="http://vine.co" rel="nofollow">Vine -... I'm not sure what this dog is doing but it's p... NaN NaN NaN https://vine.co/v/iqMjlxULzbn 12 10 None None None None None
1677 682059653698686977 NaN NaN 2015-12-30 04:44:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Tess. Her main passions are shelves an... NaN NaN NaN https://twitter.com/dog_rates/status/682059653... 11 10 Tess None None None None
1678 682047327939461121 NaN NaN 2015-12-30 03:55:29 +0000 <a href="http://twitter.com/download/iphone" r... We normally don't rate bears but this one seem... NaN NaN NaN https://twitter.com/dog_rates/status/682047327... 10 10 None None None None None
1679 682032003584274432 NaN NaN 2015-12-30 02:54:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Ulysses. He likes holding hands and hi... NaN NaN NaN https://twitter.com/dog_rates/status/682032003... 11 10 Ulysses None None None None
1680 682003177596559360 NaN NaN 2015-12-30 01:00:03 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Wrinkly as hell. Weird segmen... NaN NaN NaN https://twitter.com/dog_rates/status/682003177... 5 10 None None None None None
1681 681981167097122816 NaN NaN 2015-12-29 23:32:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimothy. He's a Trinidad Poliwhirl. Fa... NaN NaN NaN https://twitter.com/dog_rates/status/681981167... 12 10 Jimothy None None None None
1682 681891461017812993 NaN NaN 2015-12-29 17:36:07 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Charlie. He's scholarly af. Quite... NaN NaN NaN https://twitter.com/dog_rates/status/681891461... 10 10 Charlie None None pupper None
1683 681694085539872773 NaN NaN 2015-12-29 04:31:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Bo. He's a Benedoop Cumbersnatch. Seem... NaN NaN NaN https://twitter.com/dog_rates/status/681694085... 11 10 Bo None None pupper None
1684 681679526984871937 NaN NaN 2015-12-29 03:33:58 +0000 <a href="http://twitter.com/download/iphone" r... Can you spot Toby the guilty pupper? 7/10 woul... NaN NaN NaN https://twitter.com/dog_rates/status/681679526... 7 10 None None None pupper None
1685 681654059175129088 NaN NaN 2015-12-29 01:52:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Toffee. He's a happy pupper. Appears d... NaN NaN NaN https://twitter.com/dog_rates/status/681654059... 12 10 Toffee None None pupper None
1686 681610798867845120 NaN NaN 2015-12-28 23:00:52 +0000 <a href="http://twitter.com/download/iphone" r... *collapses* 12/10 https://t.co/C7M8mnzHIK NaN NaN NaN https://twitter.com/dog_rates/status/681610798... 12 10 None None None None None
1687 681579835668455424 NaN NaN 2015-12-28 20:57:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Apollo. He thought you weren't coming ... NaN NaN NaN https://twitter.com/dog_rates/status/681579835... 8 10 Apollo None None None None
1688 681523177663676416 NaN NaN 2015-12-28 17:12:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Carly. She's actually 2 dogs fused tog... NaN NaN NaN https://twitter.com/dog_rates/status/681523177... 12 10 Carly None None None None
1689 681340665377193984 6.813394e+17 4.196984e+09 2015-12-28 05:07:27 +0000 <a href="http://twitter.com/download/iphone" r... I've been told there's a slight possibility he... NaN NaN NaN NaN 5 10 None None None None None
1690 681339448655802368 NaN NaN 2015-12-28 05:02:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Asher. He's not wearing a seatbelt or ... NaN NaN NaN https://twitter.com/dog_rates/status/681339448... 9 10 Asher None None None None
1691 681320187870711809 NaN NaN 2015-12-28 03:46:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Glacier. He's a very happy pup. Loves ... NaN NaN NaN https://twitter.com/dog_rates/status/681320187... 11 10 Glacier None None None None
1692 681302363064414209 NaN NaN 2015-12-28 02:35:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Chuck. He's a neat dog. Very flexible.... NaN NaN NaN https://twitter.com/dog_rates/status/681302363... 3 10 Chuck None None None None
1693 681297372102656000 NaN NaN 2015-12-28 02:15:26 +0000 <a href="http://twitter.com/download/iphone" r... This is actually a lion. We only rate dogs. Fo... NaN NaN NaN https://twitter.com/dog_rates/status/681297372... 12 10 actually None None None None
1694 681281657291280384 NaN NaN 2015-12-28 01:12:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sarge. His parents signed him up for danc... NaN NaN NaN https://twitter.com/dog_rates/status/681281657... 11 10 Sarge None None None None
1695 681261549936340994 NaN NaN 2015-12-27 23:53:05 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Panda. He's a Quackadilly Shooste... NaN NaN NaN https://twitter.com/dog_rates/status/681261549... 9 10 Panda None None None None
1696 681242418453299201 NaN NaN 2015-12-27 22:37:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Champ. He's being sacrificed to the Az... NaN NaN NaN https://twitter.com/dog_rates/status/681242418... 10 10 Champ None None None None
1697 681231109724700672 NaN NaN 2015-12-27 21:52:07 +0000 <a href="http://twitter.com/download/iphone" r... I just love this pic. 11/10 this pupper is goi... NaN NaN NaN https://twitter.com/dog_rates/status/681231109... 11 10 None None None pupper None
1698 681193455364796417 NaN NaN 2015-12-27 19:22:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Aspen. He's astronomically fluffy. I w... NaN NaN NaN https://twitter.com/dog_rates/status/681193455... 11 10 Aspen None None None None
1699 680970795137544192 NaN NaN 2015-12-27 04:37:44 +0000 <a href="http://twitter.com/download/iphone" r... I thought I made this very clear. We only rate... NaN NaN NaN https://twitter.com/dog_rates/status/680970795... 9 10 None None None None None
1700 680959110691590145 NaN NaN 2015-12-27 03:51:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Ozzie. He was doing fine until he lost... NaN NaN NaN https://twitter.com/dog_rates/status/680959110... 9 10 Ozzie None None None None
1701 680940246314430465 NaN NaN 2015-12-27 02:36:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Alice. She's an idiot. 4/10 https://t.... NaN NaN NaN https://twitter.com/dog_rates/status/680940246... 4 10 Alice None None None None
1702 680934982542561280 NaN NaN 2015-12-27 02:15:25 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Sadie. She's a Tortellini Sidewin... NaN NaN NaN https://twitter.com/dog_rates/status/680934982... 10 10 Sadie None None None None
1703 680913438424612864 NaN NaN 2015-12-27 00:49:49 +0000 <a href="http://twitter.com/download/iphone" r... Meet Griswold. He's dapper as hell. Already pu... NaN NaN NaN https://twitter.com/dog_rates/status/680913438... 11 10 Griswold None None None None
1704 680889648562991104 NaN NaN 2015-12-26 23:15:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Cheesy. It's her birthday. She's patie... NaN NaN NaN https://twitter.com/dog_rates/status/680889648... 9 10 Cheesy None None None None
1705 680836378243002368 NaN NaN 2015-12-26 19:43:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Ellie. She's secretly ferocious. 12/10... NaN NaN NaN https://twitter.com/dog_rates/status/680836378... 12 10 Ellie None None pupper None
1706 680805554198020098 NaN NaN 2015-12-26 17:41:07 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This guy's dog broke. So sad. 9/10 would still... NaN NaN NaN https://vine.co/v/iAP0Ugzi2PO 9 10 None None None None None
1707 680801747103793152 NaN NaN 2015-12-26 17:25:59 +0000 <a href="http://twitter.com/download/iphone" r... Great picture here. Dog on the right panicked ... NaN NaN NaN https://twitter.com/dog_rates/status/680801747... 10 10 None None None None None
1708 680798457301471234 NaN NaN 2015-12-26 17:12:55 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Moofasa. He must be a powerful do... NaN NaN NaN https://twitter.com/dog_rates/status/680798457... 6 10 Moofasa None None None None
1709 680609293079592961 NaN NaN 2015-12-26 04:41:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Brody. That is his chair. He loves his... NaN NaN NaN https://twitter.com/dog_rates/status/680609293... 9 10 Brody None None None None
1710 680583894916304897 NaN NaN 2015-12-26 03:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. Her tennis ball slowly rolled d... NaN NaN NaN https://twitter.com/dog_rates/status/680583894... 8 10 Penny None None None None
1711 680497766108381184 NaN NaN 2015-12-25 21:18:05 +0000 <a href="http://twitter.com/download/iphone" r... Meet Percy. He's a Latvian Yuletide Heineken. ... NaN NaN NaN https://twitter.com/dog_rates/status/680497766... 12 10 Percy None None None None
1712 680494726643068929 NaN NaN 2015-12-25 21:06:00 +0000 <a href="http://twitter.com/download/iphone" r... Here we have uncovered an entire battalion of ... NaN NaN NaN https://twitter.com/dog_rates/status/680494726... 26 10 None None None None None
1713 680473011644985345 NaN NaN 2015-12-25 19:39:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Hector. He thinks he's a hammer. Silly... NaN NaN NaN https://twitter.com/dog_rates/status/680473011... 10 10 Hector None None pupper None
1714 680440374763077632 NaN NaN 2015-12-25 17:30:01 +0000 <a href="http://twitter.com/download/iphone" r... Merry Christmas. My gift to you is this tiny u... NaN NaN NaN https://twitter.com/dog_rates/status/680440374... 11 10 None None None None None
1715 680221482581123072 NaN NaN 2015-12-25 03:00:14 +0000 <a href="http://twitter.com/download/iphone" r... This is CeCe. She's patiently waiting for Sant... NaN NaN NaN https://twitter.com/dog_rates/status/680221482... 10 10 CeCe None None None None
1716 680206703334408192 NaN NaN 2015-12-25 02:01:30 +0000 <a href="http://twitter.com/download/iphone" r... I hope everyone enjoys this picture as much as... NaN NaN NaN https://twitter.com/dog_rates/status/680206703... 12 10 Toby None None None None
1717 680191257256136705 NaN NaN 2015-12-25 01:00:07 +0000 <a href="http://twitter.com/download/iphone" r... Here's a sleepy Christmas pupper 11/10 https:/... NaN NaN NaN https://twitter.com/dog_rates/status/680191257... 11 10 None None None pupper None
1718 680176173301628928 NaN NaN 2015-12-25 00:00:11 +0000 <a href="http://twitter.com/download/iphone" r... This pupper is patiently waiting to scare the ... NaN NaN NaN https://twitter.com/dog_rates/status/680176173... 10 10 None None None pupper None
1719 680161097740095489 NaN NaN 2015-12-24 23:00:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Goliath. He's an example of irony. Head i... NaN NaN NaN https://twitter.com/dog_rates/status/680161097... 12 10 Goliath None None None None
1720 680145970311643136 NaN NaN 2015-12-24 22:00:10 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kawhi. He was doing fine until hi... NaN NaN NaN https://twitter.com/dog_rates/status/680145970... 10 10 Kawhi None None pupper None
1721 680130881361686529 NaN NaN 2015-12-24 21:00:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Reggie. His Santa hat is a little big.... NaN NaN NaN https://twitter.com/dog_rates/status/680130881... 10 10 Reggie None None None None
1722 680115823365742593 NaN NaN 2015-12-24 20:00:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Ozzy. He woke up 2 minutes before he h... NaN NaN NaN https://twitter.com/dog_rates/status/680115823... 9 10 Ozzy None None None None
1723 680100725817409536 NaN NaN 2015-12-24 19:00:23 +0000 <a href="https://about.twitter.com/products/tw... This pupper is not coming inside until she cat... NaN NaN NaN https://twitter.com/dog_rates/status/680100725... 11 10 None None None pupper None
1724 680085611152338944 NaN NaN 2015-12-24 18:00:19 +0000 <a href="https://about.twitter.com/products/tw... This is by far the most coordinated series of ... NaN NaN NaN https://twitter.com/dog_rates/status/680085611... 12 10 by None None None None
1725 680070545539371008 NaN NaN 2015-12-24 17:00:27 +0000 <a href="https://about.twitter.com/products/tw... Say hello to Emmie. She's trapped in an orname... NaN NaN NaN https://twitter.com/dog_rates/status/680070545... 9 10 Emmie None None None None
1726 680055455951884288 NaN NaN 2015-12-24 16:00:30 +0000 <a href="https://about.twitter.com/products/tw... Meet Sammy. At first I was like "that's a snow... NaN NaN NaN https://twitter.com/dog_rates/status/680055455... 10 10 Sammy None None None None
1727 679877062409191424 NaN NaN 2015-12-24 04:11:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Penelope. She's a bacon frise. Total babe... NaN NaN NaN https://twitter.com/dog_rates/status/679877062... 5 10 Penelope None None None None
1728 679872969355714560 NaN NaN 2015-12-24 03:55:21 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Rocco. He's in a very intense game of ... NaN NaN NaN https://vine.co/v/iAAxTbj1UAM 10 10 Rocco None None None None
1729 679862121895714818 NaN NaN 2015-12-24 03:12:15 +0000 <a href="http://twitter.com/download/iphone" r... "Dammit hooman I'm jus trynna lik the fler" 11... NaN NaN NaN https://twitter.com/dog_rates/status/679862121... 11 10 None None None None None
1730 679854723806179328 NaN NaN 2015-12-24 02:42:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Bruce. He's a rare pup. Covered in Fro... NaN NaN NaN https://twitter.com/dog_rates/status/679854723... 7 10 Bruce None None None None
1731 679844490799091713 NaN NaN 2015-12-24 02:02:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Willie. He's floating away and needs y... NaN NaN NaN https://twitter.com/dog_rates/status/679844490... 10 10 Willie None None None None
1732 679828447187857408 NaN NaN 2015-12-24 00:58:27 +0000 <a href="http://twitter.com/download/iphone" r... Everybody look at this beautiful pupper 13/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/679828447... 13 10 None None None pupper None
1733 679777920601223168 NaN NaN 2015-12-23 21:37:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Rinna. She's melting. 10/10 get inside... NaN NaN NaN https://twitter.com/dog_rates/status/679777920... 10 10 Rinna None None pupper None
1734 679736210798047232 NaN NaN 2015-12-23 18:51:56 +0000 <a href="http://twitter.com/download/iphone" r... This pup's name is Sabertooth (parents must be... NaN NaN NaN https://twitter.com/dog_rates/status/679736210... 9 10 None None None None None
1735 679729593985699840 NaN NaN 2015-12-23 18:25:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Hunter. He was playing with his ball m... NaN NaN NaN https://twitter.com/dog_rates/status/679729593... 8 10 Hunter None None None None
1736 679722016581222400 NaN NaN 2015-12-23 17:55:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Mike. He is a Jordanian Frito Pilates.... NaN NaN NaN https://twitter.com/dog_rates/status/679722016... 8 10 Mike None None None None
1737 679530280114372609 NaN NaN 2015-12-23 05:13:38 +0000 <a href="http://twitter.com/download/iphone" r... Guys this really needs to stop. We've been ove... NaN NaN NaN https://twitter.com/dog_rates/status/679530280... 7 10 a None None None None
1738 679527802031484928 NaN NaN 2015-12-23 05:03:47 +0000 <a href="http://twitter.com/download/iphone" r... This little pupper just arrived. 11/10 would s... NaN NaN NaN https://twitter.com/dog_rates/status/679527802... 11 10 None None None pupper None
1739 679511351870550016 NaN NaN 2015-12-23 03:58:25 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to William. He makes fun of others b... NaN NaN NaN https://twitter.com/dog_rates/status/679511351... 7 10 William None None None None
1740 679503373272485890 NaN NaN 2015-12-23 03:26:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Dwight. He's a pointy pupper. Very doc... NaN NaN NaN https://twitter.com/dog_rates/status/679503373... 8 10 Dwight None None pupper None
1741 679475951516934144 NaN NaN 2015-12-23 01:37:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Evy. She doesn't want to be a Koala. 9... NaN NaN NaN https://twitter.com/dog_rates/status/679475951... 9 10 Evy None None None None
1742 679462823135686656 NaN NaN 2015-12-23 00:45:35 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hurley. He's the curly one. He hugs every... NaN NaN NaN https://twitter.com/dog_rates/status/679462823... 11 10 Hurley None None None None
1743 679405845277462528 NaN NaN 2015-12-22 20:59:10 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Crazy unseen footage from Jurassic Park. 10/10... NaN NaN NaN https://vine.co/v/iKVFEigMLxP 10 10 None None None None None
1744 679158373988876288 NaN NaN 2015-12-22 04:35:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Rubio. He has too much skin. 11/10 htt... NaN NaN NaN https://twitter.com/dog_rates/status/679158373... 11 10 Rubio None None None None
1745 679148763231985668 NaN NaN 2015-12-22 03:57:37 +0000 <a href="http://twitter.com/download/iphone" r... I know everyone's excited for Christmas but th... NaN NaN NaN https://twitter.com/dog_rates/status/679148763... 8 10 None None None None None
1746 679132435750195208 NaN NaN 2015-12-22 02:52:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He's a river dancer. His friend... NaN NaN NaN https://twitter.com/dog_rates/status/679132435... 10 10 Louis None None None None
1747 679111216690831360 NaN NaN 2015-12-22 01:28:25 +0000 <a href="http://twitter.com/download/iphone" r... This is officially the greatest yawn of all ti... NaN NaN NaN https://twitter.com/dog_rates/status/679111216... 12 10 officially None None None None
1748 679062614270468097 NaN NaN 2015-12-21 22:15:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Chompsky. He lives up to his name. 11/... NaN NaN NaN https://twitter.com/dog_rates/status/679062614... 11 10 Chompsky None None None None
1749 679047485189439488 NaN NaN 2015-12-21 21:15:11 +0000 <a href="http://twitter.com/download/iphone" r... This dog doesn't know how to stairs. Quite tra... NaN NaN NaN https://twitter.com/dog_rates/status/679047485... 9 10 None None None None None
1750 679001094530465792 NaN NaN 2015-12-21 18:10:50 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Rascal. He's paddling an imaginary can... NaN NaN NaN https://vine.co/v/iKIwAzEatd6 11 10 Rascal None None None None
1751 678991772295516161 NaN NaN 2015-12-21 17:33:48 +0000 <a href="http://twitter.com/download/iphone" r... If your Monday isn't going so well just take a... NaN NaN NaN https://twitter.com/dog_rates/status/678991772... 12 10 None None None None None
1752 678969228704284672 NaN NaN 2015-12-21 16:04:13 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lola. She's a Metamorphic Chartreuse. Pla... NaN NaN NaN https://twitter.com/dog_rates/status/678969228... 11 10 Lola None None None None
1753 678800283649069056 NaN NaN 2015-12-21 04:52:53 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper with some mean tan lines. Snaz... NaN NaN NaN https://twitter.com/dog_rates/status/678800283... 12 10 None None None pupper None
1754 678798276842360832 NaN NaN 2015-12-21 04:44:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Linda. She fucking hates trees. 7/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/678798276... 7 10 Linda None None None None
1755 678774928607469569 NaN NaN 2015-12-21 03:12:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Tug. He's not required to wear the con... NaN NaN NaN https://twitter.com/dog_rates/status/678774928... 11 10 Tug None None None None
1756 678767140346941444 NaN NaN 2015-12-21 02:41:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Mia. She makes awful decisions. 8/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/678767140... 8 10 Mia None None None None
1757 678764513869611008 NaN NaN 2015-12-21 02:30:45 +0000 <a href="http://twitter.com/download/iphone" r... Meet Wilson. He got caught humping the futon. ... NaN NaN NaN https://twitter.com/dog_rates/status/678764513... 10 10 Wilson None None None None
1758 678755239630127104 NaN NaN 2015-12-21 01:53:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Dash. He didn't think the water would ... NaN NaN NaN https://twitter.com/dog_rates/status/678755239... 10 10 Dash None None None None
1759 678740035362037760 NaN NaN 2015-12-21 00:53:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Tango. He's a large dog. Doesn't care muc... NaN NaN NaN https://twitter.com/dog_rates/status/678740035... 6 10 Tango None None None None
1760 678708137298427904 NaN NaN 2015-12-20 22:46:44 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Here we are witnessing a wild field pupper. Lo... NaN NaN NaN https://vine.co/v/eQjxxYaQ60K 10 10 None None None pupper None
1761 678675843183484930 NaN NaN 2015-12-20 20:38:24 +0000 <a href="http://twitter.com/download/iphone" r... Exotic pup here. Tail long af. Throat looks sw... NaN NaN NaN https://twitter.com/dog_rates/status/678675843... 2 10 None None None None None
1762 678643457146150913 NaN NaN 2015-12-20 18:29:43 +0000 <a href="http://twitter.com/download/iphone" r... Meet Grizz. He just arrived. Couldn't wait unt... NaN NaN NaN https://twitter.com/dog_rates/status/678643457... 10 10 Grizz None None None None
1763 678446151570427904 NaN NaN 2015-12-20 05:25:42 +0000 <a href="http://twitter.com/download/iphone" r... Touching scene here. Really stirs up the emoti... NaN NaN NaN https://twitter.com/dog_rates/status/678446151... 10 10 None None None None None
1764 678424312106393600 NaN NaN 2015-12-20 03:58:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Crystal. She's a shitty fireman. No se... NaN NaN NaN https://twitter.com/dog_rates/status/678424312... 2 10 Crystal None None None None
1765 678410210315247616 NaN NaN 2015-12-20 03:02:53 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Jerome. He can shoot french fries... NaN NaN NaN https://twitter.com/dog_rates/status/678410210... 10 10 Jerome None None None None
1766 678399652199309312 NaN NaN 2015-12-20 02:20:55 +0000 <a href="http://twitter.com/download/iphone" r... This made my day. 12/10 please enjoy https://t... NaN NaN NaN https://twitter.com/dog_rates/status/678399652... 12 10 None None None None None
1767 678396796259975168 NaN NaN 2015-12-20 02:09:34 +0000 <a href="http://twitter.com/download/iphone" r... These little fellas have opposite facial expre... NaN NaN NaN https://twitter.com/dog_rates/status/678396796... 12 10 None None None None None
1768 678389028614488064 NaN NaN 2015-12-20 01:38:42 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She just learned that her final... NaN NaN NaN https://twitter.com/dog_rates/status/678389028... 11 10 Bella None None pupper None
1769 678380236862578688 NaN NaN 2015-12-20 01:03:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Crumpet. He underestimated the snow. Q... NaN NaN NaN https://twitter.com/dog_rates/status/678380236... 10 10 Crumpet None None None None
1770 678341075375947776 NaN NaN 2015-12-19 22:28:09 +0000 <a href="http://twitter.com/download/iphone" r... This pupper likes tape. 12/10 https://t.co/cSp... NaN NaN NaN https://twitter.com/dog_rates/status/678341075... 12 10 None None None pupper None
1771 678334497360859136 NaN NaN 2015-12-19 22:02:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Rosie. She has a snazzy bow tie and a ... NaN NaN NaN https://twitter.com/dog_rates/status/678334497... 10 10 Rosie None None None None
1772 678278586130948096 NaN NaN 2015-12-19 18:19:51 +0000 <a href="http://twitter.com/download/iphone" r... Another spooky pupper here. Most definitely fl... NaN NaN NaN https://twitter.com/dog_rates/status/678278586... 10 10 None None None pupper None
1773 678255464182861824 NaN NaN 2015-12-19 16:47:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Jessifer. She is a Bismoth Teriyaki. F... NaN NaN NaN https://twitter.com/dog_rates/status/678255464... 9 10 Jessifer None None None None
1774 678023323247357953 6.780211e+17 4.196984e+09 2015-12-19 01:25:31 +0000 <a href="http://twitter.com/download/iphone" r... After getting lost in Reese's eyes for several... NaN NaN NaN NaN 13 10 None None None None None
1775 678021115718029313 NaN NaN 2015-12-19 01:16:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Reese. He likes holding hands. 12/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/678021115... 12 10 Reese None None None None
1776 677961670166224897 NaN NaN 2015-12-18 21:20:32 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is Izzy. She's showing off the dance move... NaN NaN NaN https://vine.co/v/iKuMDuYV0aZ 11 10 Izzy None None None None
1777 677918531514703872 NaN NaN 2015-12-18 18:29:07 +0000 <a href="http://twitter.com/download/iphone" r... "Everything looks pretty good in there. Make s... NaN NaN NaN https://twitter.com/dog_rates/status/677918531... 10 10 None None None None None
1778 677895101218201600 NaN NaN 2015-12-18 16:56:01 +0000 <a href="http://twitter.com/download/iphone" r... Guys this was terrifying. Really spooked me up... NaN NaN NaN https://twitter.com/dog_rates/status/677895101... 9 10 None None None None None
1779 677716515794329600 NaN NaN 2015-12-18 05:06:23 +0000 <a href="http://twitter.com/download/iphone" r... IT'S PUPPERGEDDON. Total of 144/120 ...I think... NaN NaN NaN https://twitter.com/dog_rates/status/677716515... 144 120 None None None None None
1780 677700003327029250 NaN NaN 2015-12-18 04:00:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Ralph. He's an interpretive dancer. 10... NaN NaN NaN https://twitter.com/dog_rates/status/677700003... 10 10 Ralph None None None None
1781 677698403548192770 NaN NaN 2015-12-18 03:54:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Sadie. She got her holidays confused. ... NaN NaN NaN https://twitter.com/dog_rates/status/677698403... 9 10 Sadie None None None None
1782 677687604918272002 NaN NaN 2015-12-18 03:11:30 +0000 <a href="http://twitter.com/download/iphone" r... This was Cindy's face when she heard Susan for... NaN NaN NaN https://twitter.com/dog_rates/status/677687604... 11 10 None None None None None
1783 677673981332312066 NaN NaN 2015-12-18 02:17:22 +0000 <a href="http://twitter.com/download/iphone" r... Endangered triangular pup here. Could be a wiz... NaN NaN NaN https://twitter.com/dog_rates/status/677673981... 9 10 None None None None None
1784 677662372920729601 NaN NaN 2015-12-18 01:31:14 +0000 <a href="http://twitter.com/download/iphone" r... In honor of the new Star Wars movie. Here's Yo... NaN NaN NaN https://twitter.com/dog_rates/status/677662372... 12 10 None None None None None
1785 677644091929329666 NaN NaN 2015-12-18 00:18:36 +0000 <a href="http://twitter.com/download/iphone" r... This is a dog swinging. I really enjoyed it so... NaN NaN NaN https://twitter.com/dog_rates/status/677644091... 11 10 a None None None None
1786 677573743309385728 NaN NaN 2015-12-17 19:39:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Sandy. He's sexually confused. Thinks ... NaN NaN NaN https://twitter.com/dog_rates/status/677573743... 10 10 Sandy None None None None
1787 677565715327688705 NaN NaN 2015-12-17 19:07:09 +0000 <a href="http://twitter.com/download/iphone" r... Contortionist pup here. Inside pentagram. Clea... NaN NaN NaN https://twitter.com/dog_rates/status/677565715... 6 10 None None None None None
1788 677557565589463040 NaN NaN 2015-12-17 18:34:46 +0000 <a href="http://twitter.com/download/iphone" r... Reckless pupper here. Not even looking at road... NaN NaN NaN https://twitter.com/dog_rates/status/677557565... 10 10 None None None pupper None
1789 677547928504967168 NaN NaN 2015-12-17 17:56:29 +0000 <a href="http://twitter.com/download/iphone" r... Not much to say here. I just think everyone ne... NaN NaN NaN https://twitter.com/dog_rates/status/677547928... 12 10 None None None None None
1790 677530072887205888 NaN NaN 2015-12-17 16:45:31 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Axel. He's a Black Chevy Pinot on... NaN NaN NaN https://twitter.com/dog_rates/status/677530072... 9 10 Axel None None None None
1791 677335745548390400 NaN NaN 2015-12-17 03:53:20 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Downright inspiring 12/10 https://t.co/vSLtYBWHcQ NaN NaN NaN https://vine.co/v/hbLbH77Ar67 12 10 None None None None None
1792 677334615166730240 NaN NaN 2015-12-17 03:48:51 +0000 <a href="http://twitter.com/download/iphone" r... This dog gave up mid jump. 9/10 https://t.co/K... NaN NaN NaN https://twitter.com/dog_rates/status/677334615... 9 10 None None None None None
1793 677331501395156992 NaN NaN 2015-12-17 03:36:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Humphrey. He's a Northern Polyp Viagra. O... NaN NaN NaN https://twitter.com/dog_rates/status/677331501... 9 10 Humphrey None None None None
1794 677328882937298944 NaN NaN 2015-12-17 03:26:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Derek. All the dogs adore Derek. He's ... NaN NaN NaN https://twitter.com/dog_rates/status/677328882... 10 10 Derek None None None None
1795 677314812125323265 NaN NaN 2015-12-17 02:30:09 +0000 <a href="http://twitter.com/download/iphone" r... Meet Tassy &amp; Bee. Tassy is pretty chill, b... NaN NaN NaN https://twitter.com/dog_rates/status/677314812... 10 10 Tassy None None None None
1796 677301033169788928 NaN NaN 2015-12-17 01:35:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Juckson. He's totally on his way to a ... NaN NaN NaN https://twitter.com/dog_rates/status/677301033... 5 10 Juckson None None None None
1797 677269281705472000 NaN NaN 2015-12-16 23:29:14 +0000 <a href="http://twitter.com/download/iphone" r... This is the happiest pupper I've ever seen. 10... NaN NaN NaN https://twitter.com/dog_rates/status/677269281... 10 10 the None None pupper None
1798 677228873407442944 NaN NaN 2015-12-16 20:48:40 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Chuq. He just wants to fit in. 11... NaN NaN NaN https://twitter.com/dog_rates/status/677228873... 11 10 Chuq None None None None
1799 677187300187611136 NaN NaN 2015-12-16 18:03:28 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a Byzantine Rigatoni. Very aerodyn... NaN NaN NaN https://twitter.com/dog_rates/status/677187300... 9 10 None None None None None
1800 676975532580409345 NaN NaN 2015-12-16 04:01:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Cooper. He doesn't know how cheese wor... NaN NaN NaN https://twitter.com/dog_rates/status/676975532... 11 10 Cooper None None None None
1801 676957860086095872 NaN NaN 2015-12-16 02:51:45 +0000 <a href="http://twitter.com/download/iphone" r... 10/10 I'd follow this dog into battle no quest... NaN NaN NaN https://twitter.com/dog_rates/status/676957860... 10 10 None None None None None
1802 676949632774234114 NaN NaN 2015-12-16 02:19:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Tyrus. He's a Speckled Centennial Tico... NaN NaN NaN https://twitter.com/dog_rates/status/676949632... 8 10 Tyrus None None None None
1803 676948236477857792 NaN NaN 2015-12-16 02:13:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Karl. Karl thinks he's slick. 6/10 sne... NaN NaN NaN https://twitter.com/dog_rates/status/676948236... 6 10 Karl None None None None
1804 676946864479084545 NaN NaN 2015-12-16 02:08:04 +0000 <a href="http://twitter.com/download/iphone" r... This pups goal was to get all four feet as clo... NaN NaN NaN https://twitter.com/dog_rates/status/676946864... 12 10 None None None None None
1805 676942428000112642 NaN NaN 2015-12-16 01:50:26 +0000 <a href="http://twitter.com/download/iphone" r... Who leaves the last cupcake just sitting there... NaN NaN NaN https://twitter.com/dog_rates/status/676942428... 9 10 None None None None None
1806 676936541936185344 NaN NaN 2015-12-16 01:27:03 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a rare pouched pupper. Ample stora... NaN NaN NaN https://twitter.com/dog_rates/status/676936541... 8 10 None None None pupper None
1807 676916996760600576 NaN NaN 2015-12-16 00:09:23 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Super speedy pupper. Does not go gentle into t... NaN NaN NaN https://vine.co/v/imJ0BdZOJTw 10 10 None None None pupper None
1808 676897532954456065 NaN NaN 2015-12-15 22:52:02 +0000 <a href="http://twitter.com/download/iphone" r... Exotic handheld dog here. Appears unathletic. ... NaN NaN NaN https://twitter.com/dog_rates/status/676897532... 5 10 None None None None None
1809 676864501615042560 NaN NaN 2015-12-15 20:40:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ash. He's just a head now. Lost his body ... NaN NaN NaN https://twitter.com/dog_rates/status/676864501... 10 10 Ash None None None None
1810 676821958043033607 NaN NaN 2015-12-15 17:51:44 +0000 <a href="http://twitter.com/download/iphone" r... Finally some constructive political change in ... NaN NaN NaN https://twitter.com/dog_rates/status/676821958... 11 10 None None None None None
1811 676819651066732545 NaN NaN 2015-12-15 17:42:34 +0000 <a href="http://twitter.com/download/iphone" r... Watch out Airbud. This pupper is also good at ... NaN NaN NaN https://twitter.com/dog_rates/status/676819651... 12 10 None None None pupper None
1812 676811746707918848 NaN NaN 2015-12-15 17:11:09 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Penny &amp; Gizmo. They are pract... NaN NaN NaN https://twitter.com/dog_rates/status/676811746... 9 10 Penny None None None None
1813 676776431406465024 NaN NaN 2015-12-15 14:50:49 +0000 <a href="http://twitter.com/download/iphone" r... When someone yells "cops!" at a party and you ... NaN NaN NaN https://twitter.com/dog_rates/status/676776431... 10 10 None None None None None
1814 676617503762681856 NaN NaN 2015-12-15 04:19:18 +0000 <a href="http://twitter.com/download/iphone" r... I promise this wasn't meant to be a cuteness o... NaN NaN NaN https://twitter.com/dog_rates/status/676617503... 13 10 None None None pupper None
1815 676613908052996102 NaN NaN 2015-12-15 04:05:01 +0000 <a href="http://twitter.com/download/iphone" r... This is the saddest/sweetest/best picture I've... NaN NaN NaN https://twitter.com/dog_rates/status/676613908... 12 10 the None None None None
1816 676606785097199616 NaN NaN 2015-12-15 03:36:42 +0000 <a href="http://twitter.com/download/iphone" r... *screeches for a sec and then faints* 12/10 ht... NaN NaN NaN https://twitter.com/dog_rates/status/676606785... 12 10 None None None None None
1817 676603393314578432 NaN NaN 2015-12-15 03:23:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Godzilla pupper. He had a ruff childho... NaN NaN NaN https://twitter.com/dog_rates/status/676603393... 9 10 Godzilla None None pupper None
1818 676593408224403456 NaN NaN 2015-12-15 02:43:33 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This pupper loves leaves. 11/10 for committed ... NaN NaN NaN https://vine.co/v/eEQQaPFbgOY 11 10 None None None pupper None
1819 676590572941893632 6.765883e+17 4.196984e+09 2015-12-15 02:32:17 +0000 <a href="http://twitter.com/download/iphone" r... After some outrage from the crowd. Bubbles is ... NaN NaN NaN NaN 7 10 None None None None None
1820 676588346097852417 NaN NaN 2015-12-15 02:23:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Bubbles. He kinda resembles a fish. Al... NaN NaN NaN https://twitter.com/dog_rates/status/676588346... 5 10 Bubbles None None None None
1821 676582956622721024 NaN NaN 2015-12-15 02:02:01 +0000 <a href="http://twitter.com/download/iphone" r... Meet Vinnie. He's having fun while being safe.... NaN NaN NaN https://twitter.com/dog_rates/status/676582956... 8 10 Vinnie None None None None
1822 676575501977128964 NaN NaN 2015-12-15 01:32:24 +0000 <a href="http://twitter.com/download/iphone" r... This pupper is very passionate about Christmas... NaN NaN NaN https://twitter.com/dog_rates/status/676575501... 8 10 None None None pupper None
1823 676533798876651520 NaN NaN 2015-12-14 22:46:41 +0000 <a href="http://twitter.com/download/iphone" r... ITSOFLUFFAYYYYY 12/10 https://t.co/bfw13CnuuZ NaN NaN NaN https://twitter.com/dog_rates/status/676533798... 12 10 None None None None None
1824 676496375194980353 NaN NaN 2015-12-14 20:17:59 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Griffin. He's upset because his c... NaN NaN NaN https://twitter.com/dog_rates/status/676496375... 9 10 Griffin None None None None
1825 676470639084101634 NaN NaN 2015-12-14 18:35:43 +0000 <a href="http://twitter.com/download/iphone" r... Three generations of pupper. 11/10 for all htt... NaN NaN NaN https://twitter.com/dog_rates/status/676470639... 11 10 None None None pupper None
1826 676440007570247681 NaN NaN 2015-12-14 16:34:00 +0000 <a href="http://twitter.com/download/iphone" r... Hope your Monday isn't too awful. Here's two b... NaN NaN NaN https://twitter.com/dog_rates/status/676440007... 11 10 None None None None None
1827 676430933382295552 NaN NaN 2015-12-14 15:57:56 +0000 <a href="http://twitter.com/download/iphone" r... Meet Duke. He's an Urban Parmesan. They know h... NaN NaN NaN https://twitter.com/dog_rates/status/676430933... 10 10 Duke None None None None
1828 676263575653122048 NaN NaN 2015-12-14 04:52:55 +0000 <a href="http://twitter.com/download/iphone" r... All this pupper wanted to do was go skiing. No... NaN NaN NaN https://twitter.com/dog_rates/status/676263575... 10 10 None None None pupper None
1829 676237365392908289 NaN NaN 2015-12-14 03:08:46 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Winston. He has no respect for th... NaN NaN NaN https://twitter.com/dog_rates/status/676237365... 8 10 Winston None None None None
1830 676219687039057920 NaN NaN 2015-12-14 01:58:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Kenneth. He's stuck in a bubble. 10/10... NaN NaN NaN https://twitter.com/dog_rates/status/676219687... 10 10 Kenneth None None None None
1831 676215927814406144 NaN NaN 2015-12-14 01:43:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Herm. He just wants to be like the oth... NaN NaN NaN https://twitter.com/dog_rates/status/676215927... 9 10 Herm None None None None
1832 676191832485810177 NaN NaN 2015-12-14 00:07:50 +0000 <a href="http://twitter.com/download/iphone" r... These two pups just met and have instantly bon... NaN NaN NaN https://twitter.com/dog_rates/status/676191832... 10 10 None None None None None
1833 676146341966438401 NaN NaN 2015-12-13 21:07:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Bert. He likes flowers. 10/10 https://... NaN NaN NaN https://twitter.com/dog_rates/status/676146341... 10 10 Bert None None None None
1834 676121918416756736 NaN NaN 2015-12-13 19:30:01 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Here we are witnessing a very excited dog. Cle... NaN NaN NaN https://vine.co/v/iZXg7VpeDAv 8 10 None None None None None
1835 676101918813499392 NaN NaN 2015-12-13 18:10:33 +0000 <a href="http://twitter.com/download/iphone" r... Meet Striker. He's ready for Christmas. 11/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/676101918... 11 10 Striker None None None None
1836 676098748976615425 NaN NaN 2015-12-13 17:57:57 +0000 <a href="http://twitter.com/download/iphone" r... Extremely rare pup here. Very religious. Alway... NaN NaN NaN https://twitter.com/dog_rates/status/676098748... 3 10 None None None None None
1837 676089483918516224 NaN NaN 2015-12-13 17:21:08 +0000 <a href="http://twitter.com/download/iphone" r... "Yes hello I'ma just snag this here toasted ba... NaN NaN NaN https://twitter.com/dog_rates/status/676089483... 9 10 None None None None None
1838 675898130735476737 NaN NaN 2015-12-13 04:40:46 +0000 <a href="http://twitter.com/download/iphone" r... I'm sure you've all seen this pupper. Not prep... NaN NaN NaN https://twitter.com/dog_rates/status/675898130... 10 10 None None None pupper None
1839 675891555769696257 NaN NaN 2015-12-13 04:14:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Donny. He's summoning the demon monste... NaN NaN NaN https://twitter.com/dog_rates/status/675891555... 6 10 Donny None None None None
1840 675888385639251968 NaN NaN 2015-12-13 04:02:03 +0000 <a href="http://twitter.com/download/iphone" r... Breathtaking scene. A father taking care of hi... NaN NaN NaN https://twitter.com/dog_rates/status/675888385... 10 10 None None None None None
1841 675878199931371520 NaN NaN 2015-12-13 03:21:34 +0000 <a href="http://twitter.com/download/iphone" r... Ok, I'll admit this is a pretty adorable bunny... NaN NaN NaN https://twitter.com/dog_rates/status/675878199... 11 10 None None None None None
1842 675870721063669760 6.757073e+17 4.196984e+09 2015-12-13 02:51:51 +0000 <a href="http://twitter.com/download/iphone" r... &amp; this is Yoshi. Another world record cont... NaN NaN NaN https://twitter.com/dog_rates/status/675870721... 11 10 None None None None None
1843 675853064436391936 NaN NaN 2015-12-13 01:41:41 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an entire platoon of puppers. Tot... NaN NaN NaN https://twitter.com/dog_rates/status/675853064... 88 80 None None None None None
1844 675849018447167488 6.758457e+17 4.196984e+09 2015-12-13 01:25:37 +0000 <a href="http://twitter.com/download/iphone" r... This dog is being demoted to a 9/10 for not we... NaN NaN NaN NaN 9 10 None None None None None
1845 675845657354215424 NaN NaN 2015-12-13 01:12:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Pepper. She's not fully comfortable ri... NaN NaN NaN https://twitter.com/dog_rates/status/675845657... 10 10 Pepper None None pupper None
1846 675822767435051008 NaN NaN 2015-12-12 23:41:18 +0000 <a href="http://twitter.com/download/iphone" r... 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10s ht... NaN NaN NaN https://twitter.com/dog_rates/status/675822767... 10 10 None None None None None
1847 675820929667219457 NaN NaN 2015-12-12 23:34:00 +0000 <a href="http://twitter.com/download/iphone" r... Here's a handful of sleepy puppers. All look u... NaN NaN NaN https://twitter.com/dog_rates/status/675820929... 11 10 None None None None None
1848 675798442703122432 NaN NaN 2015-12-12 22:04:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Bernie. He just touched a boob for the... NaN NaN NaN https://twitter.com/dog_rates/status/675798442... 10 10 Bernie None None None None
1849 675781562965868544 NaN NaN 2015-12-12 20:57:34 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Buddah. He was Waldo for Hallowee... NaN NaN NaN https://twitter.com/dog_rates/status/675781562... 11 10 Buddah None None None None
1850 675740360753160193 NaN NaN 2015-12-12 18:13:51 +0000 <a href="http://twitter.com/download/iphone" r... Here's a pupper licking in slow motion. 12/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/675740360... 12 10 None None None pupper None
1851 675710890956750848 NaN NaN 2015-12-12 16:16:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Lenny. He was just told that he couldn... NaN NaN NaN https://twitter.com/dog_rates/status/675710890... 12 10 Lenny None None None None
1852 675707330206547968 6.754971e+17 4.196984e+09 2015-12-12 16:02:36 +0000 <a href="http://twitter.com/download/iphone" r... We've got ourselves a battle here. Watch out R... NaN NaN NaN https://twitter.com/dog_rates/status/675707330... 11 10 None None None None None
1853 675706639471788032 NaN NaN 2015-12-12 15:59:51 +0000 <a href="http://twitter.com/download/iphone" r... This is a Sizzlin Menorah spaniel from Brookly... NaN NaN NaN https://twitter.com/dog_rates/status/675706639... 10 10 a None None None None
1854 675534494439489536 NaN NaN 2015-12-12 04:35:48 +0000 <a href="http://twitter.com/download/iphone" r... Seriously guys?! Only send in dogs. I only rat... NaN NaN NaN https://twitter.com/dog_rates/status/675534494... 11 10 a None None None None
1855 675531475945709568 NaN NaN 2015-12-12 04:23:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Ellie AKA Queen Slayer of the Orbs. Ve... NaN NaN NaN https://twitter.com/dog_rates/status/675531475... 10 10 Ellie None None None None
1856 675522403582218240 NaN NaN 2015-12-12 03:47:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sammy. He's a Motorola Firefox. Hat under... NaN NaN NaN https://twitter.com/dog_rates/status/675522403... 10 10 Sammy None None None None
1857 675517828909424640 NaN NaN 2015-12-12 03:29:35 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 stay woke https://t.co/XDiQw4Akiw NaN NaN NaN https://twitter.com/dog_rates/status/675517828... 12 10 None None None None None
1858 675501075957489664 NaN NaN 2015-12-12 02:23:01 +0000 <a href="http://twitter.com/download/iphone" r... I shall call him squishy and he shall be mine,... NaN NaN NaN https://twitter.com/dog_rates/status/675501075... 13 10 None None None None None
1859 675497103322386432 NaN NaN 2015-12-12 02:07:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Reggie. He's going for the world record. ... NaN NaN NaN https://twitter.com/dog_rates/status/675497103... 11 10 Reggie None None None None
1860 675489971617296384 NaN NaN 2015-12-12 01:38:53 +0000 <a href="http://twitter.com/download/iphone" r... RT until we find this dog. Clearly a cool dog ... NaN NaN NaN https://twitter.com/dog_rates/status/675489971... 10 10 None None None None None
1861 675483430902214656 NaN NaN 2015-12-12 01:12:54 +0000 <a href="http://twitter.com/download/iphone" r... Rare shielded battle dog here. Very happy abou... NaN NaN NaN https://twitter.com/dog_rates/status/675483430... 5 10 None None None None None
1862 675432746517426176 NaN NaN 2015-12-11 21:51:30 +0000 <a href="http://twitter.com/download/iphone" r... Happy Friday. Here's some golden puppers. 12/1... NaN NaN NaN https://twitter.com/dog_rates/status/675432746... 12 10 None None None None None
1863 675372240448454658 NaN NaN 2015-12-11 17:51:04 +0000 <a href="http://twitter.com/download/iphone" r... The tail alone is 13/10. Great dog, better own... NaN NaN NaN https://twitter.com/dog_rates/status/675372240... 13 10 None None None None None
1864 675362609739206656 NaN NaN 2015-12-11 17:12:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Daisy. She loves that shoe. Still no s... NaN NaN NaN https://twitter.com/dog_rates/status/675362609... 12 10 Daisy None None None None
1865 675354435921575936 NaN NaN 2015-12-11 16:40:19 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Everyone needs to watch this. 13/10 https://t.... NaN NaN NaN https://twitter.com/dog_rates/status/675354435... 13 10 None None None None None
1866 675349384339542016 6.749998e+17 4.196984e+09 2015-12-11 16:20:15 +0000 <a href="http://twitter.com/download/iphone" r... Yea I lied. Here's more. All 13/10 https://t.c... NaN NaN NaN https://twitter.com/dog_rates/status/675349384... 13 10 None None None None None
1867 675334060156301312 NaN NaN 2015-12-11 15:19:21 +0000 <a href="http://twitter.com/download/iphone" r... Good morning here's a grass pupper. 12/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/675334060... 12 10 None None None pupper None
1868 675166823650848770 NaN NaN 2015-12-11 04:14:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Arnold. He broke his leg saving a hand... NaN NaN NaN https://twitter.com/dog_rates/status/675166823... 10 10 Arnold None None None None
1869 675153376133427200 NaN NaN 2015-12-11 03:21:23 +0000 <a href="http://twitter.com/download/iphone" r... What kind of person sends in a picture without... NaN NaN NaN https://twitter.com/dog_rates/status/675153376... 1 10 None None None None None
1870 675149409102012420 NaN NaN 2015-12-11 03:05:37 +0000 <a href="http://twitter.com/download/iphone" r... holy shit 12/10 https://t.co/p6O8X93bTQ NaN NaN NaN https://twitter.com/dog_rates/status/675149409... 12 10 None None None None None
1871 675147105808306176 NaN NaN 2015-12-11 02:56:28 +0000 <a href="http://twitter.com/download/iphone" r... When you're presenting a group project and the... NaN NaN NaN https://twitter.com/dog_rates/status/675147105... 10 10 None None None None None
1872 675146535592706048 NaN NaN 2015-12-11 02:54:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Coops. He's yelling at the carpet. Not... NaN NaN NaN https://twitter.com/dog_rates/status/675146535... 7 10 Coops None None None None
1873 675145476954566656 NaN NaN 2015-12-11 02:49:59 +0000 <a href="http://twitter.com/download/iphone" r... What an honor. 3 dogs here. Blond one is clear... NaN NaN NaN https://twitter.com/dog_rates/status/675145476... 9 10 None None None None None
1874 675135153782571009 NaN NaN 2015-12-11 02:08:58 +0000 <a href="http://twitter.com/download/iphone" r... This is Steven. He got locked outside. Damn it... NaN NaN NaN https://twitter.com/dog_rates/status/675135153... 5 10 Steven None None None None
1875 675113801096802304 NaN NaN 2015-12-11 00:44:07 +0000 <a href="http://twitter.com/download/iphone" r... Meet Zuzu. He just graduated college. Astute p... NaN NaN NaN https://twitter.com/dog_rates/status/675113801... 10 10 Zuzu None None pupper None
1876 675111688094527488 NaN NaN 2015-12-11 00:35:44 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Oliver. He thought what was insid... NaN NaN NaN https://twitter.com/dog_rates/status/675111688... 8 10 Oliver None None None None
1877 675109292475830276 NaN NaN 2015-12-11 00:26:12 +0000 <a href="http://twitter.com/download/iphone" r... C'mon guys. We've been over this. We only rate... NaN NaN NaN https://twitter.com/dog_rates/status/675109292... 9 10 a None None None None
1878 675047298674663426 NaN NaN 2015-12-10 20:19:52 +0000 <a href="http://twitter.com/download/iphone" r... This is a fluffy albino Bacardi Columbia mix. ... NaN NaN NaN https://twitter.com/dog_rates/status/675047298... 11 10 a None None None None
1879 675015141583413248 NaN NaN 2015-12-10 18:12:05 +0000 <a href="http://twitter.com/download/iphone" r... Meet Moe. He's a golden Fetty Woof. Doesn't re... NaN NaN NaN https://twitter.com/dog_rates/status/675015141... 10 10 Moe None None None None
1880 675006312288268288 NaN NaN 2015-12-10 17:37:00 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mollie. This pic was taken after ... NaN NaN NaN https://twitter.com/dog_rates/status/675006312... 10 10 Mollie None None pupper None
1881 675003128568291329 NaN NaN 2015-12-10 17:24:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Laela. She's adorable. Magnificent eyes. ... NaN NaN NaN https://twitter.com/dog_rates/status/675003128... 12 10 Laela None None None None
1882 674999807681908736 6.747934e+17 4.196984e+09 2015-12-10 17:11:09 +0000 <a href="http://twitter.com/download/iphone" r... Ok last one of these. I may try to make some m... NaN NaN NaN https://twitter.com/dog_rates/status/674999807... 13 10 None None None None None
1883 674805413498527744 NaN NaN 2015-12-10 04:18:42 +0000 <a href="http://twitter.com/download/iphone" r... When your entire life is crumbling before you ... NaN NaN NaN https://twitter.com/dog_rates/status/674805413... 10 10 None None None None None
1884 674800520222154752 NaN NaN 2015-12-10 03:59:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Tedders. He broke his leg saving babie... NaN NaN NaN https://twitter.com/dog_rates/status/674800520... 11 10 Tedders None None None None
1885 674793399141146624 6.717299e+17 4.196984e+09 2015-12-10 03:30:58 +0000 <a href="http://twitter.com/download/iphone" r... I have found another. 13/10 https://t.co/HwroP... NaN NaN NaN https://twitter.com/dog_rates/status/674793399... 13 10 None None None None None
1886 674790488185167872 NaN NaN 2015-12-10 03:19:24 +0000 <a href="http://twitter.com/download/iphone" r... ER... MER... GERD 13/10 https://t.co/L1puJISV1a NaN NaN NaN https://twitter.com/dog_rates/status/674790488... 13 10 None None None None None
1887 674788554665512960 NaN NaN 2015-12-10 03:11:43 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Maggie. She's a Western Septic Do... NaN NaN NaN https://twitter.com/dog_rates/status/674788554... 9 10 Maggie None None None None
1888 674781762103414784 NaN NaN 2015-12-10 02:44:43 +0000 <a href="http://twitter.com/download/iphone" r... Bedazzled pup here. Fashionable af. Super yell... NaN NaN NaN https://twitter.com/dog_rates/status/674781762... 8 10 None None None None None
1889 674774481756377088 NaN NaN 2015-12-10 02:15:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Superpup. His head isn't proportional ... NaN NaN NaN https://twitter.com/dog_rates/status/674774481... 11 10 Superpup None None pupper None
1890 674767892831932416 NaN NaN 2015-12-10 01:49:36 +0000 <a href="http://twitter.com/download/iphone" r... This pup was carefully tossed to make it look ... NaN NaN NaN https://twitter.com/dog_rates/status/674767892... 12 10 None None None None None
1891 674764817387900928 NaN NaN 2015-12-10 01:37:23 +0000 <a href="http://twitter.com/download/iphone" r... These two pups are masters of camouflage. Very... NaN NaN NaN https://twitter.com/dog_rates/status/674764817... 10 10 None None None None None
1892 674754018082705410 6.747522e+17 4.196984e+09 2015-12-10 00:54:28 +0000 <a href="http://twitter.com/download/iphone" r... Just received another perfect photo of dogs an... NaN NaN NaN https://twitter.com/dog_rates/status/674754018... 12 10 None None None None None
1893 674752233200820224 NaN NaN 2015-12-10 00:47:23 +0000 <a href="http://twitter.com/download/iphone" r... Everyone please just appreciate how perfect th... NaN NaN NaN https://twitter.com/dog_rates/status/674752233... 12 10 None None None None None
1894 674743008475090944 NaN NaN 2015-12-10 00:10:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Sophie. She just saw a spider. 10/10 d... NaN NaN NaN https://twitter.com/dog_rates/status/674743008... 10 10 Sophie None None None None
1895 674742531037511680 6.747400e+17 4.196984e+09 2015-12-10 00:08:50 +0000 <a href="http://twitter.com/download/iphone" r... Some clarification is required. The dog is sin... NaN NaN NaN NaN 11 10 None None None None None
1896 674739953134403584 NaN NaN 2015-12-09 23:58:35 +0000 <a href="http://twitter.com/download/iphone" r... "🎶 DO YOU BELIEVE IN LIFE AFTER LOVE 🎶"\n11/10... NaN NaN NaN https://twitter.com/dog_rates/status/674739953... 11 10 None None None None None
1897 674737130913071104 NaN NaN 2015-12-09 23:47:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rufio. He is unaware of the pink legless ... NaN NaN NaN https://twitter.com/dog_rates/status/674737130... 10 10 Rufio None None pupper None
1898 674690135443775488 NaN NaN 2015-12-09 20:40:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Patrick. He's an exotic pup. Jumps great ... NaN NaN NaN https://twitter.com/dog_rates/status/674690135... 3 10 Patrick None None None None
1899 674670581682434048 NaN NaN 2015-12-09 19:22:56 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jeb &amp; Bush. Jeb is somehow stuck in t... NaN NaN NaN https://twitter.com/dog_rates/status/674670581... 9 10 Jeb None None None None
1900 674664755118911488 NaN NaN 2015-12-09 18:59:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Rodman. He's getting destroyed by the ... NaN NaN NaN https://twitter.com/dog_rates/status/674664755... 10 10 Rodman None None None None
1901 674646392044941312 NaN NaN 2015-12-09 17:46:48 +0000 <a href="http://twitter.com/download/iphone" r... Two gorgeous dogs here. Little waddling dog is... NaN NaN NaN https://twitter.com/dog_rates/status/674646392... 5 10 None None None None None
1902 674644256330530816 NaN NaN 2015-12-09 17:38:19 +0000 <a href="http://twitter.com/download/iphone" r... When you see sophomores in high school driving... NaN NaN NaN https://twitter.com/dog_rates/status/674644256... 11 10 None None None None None
1903 674638615994089473 NaN NaN 2015-12-09 17:15:54 +0000 <a href="http://twitter.com/download/iphone" r... This pupper is fed up with being tickled. 12/1... NaN NaN NaN https://twitter.com/dog_rates/status/674638615... 12 10 None None None pupper None
1904 674632714662858753 NaN NaN 2015-12-09 16:52:27 +0000 <a href="http://twitter.com/download/iphone" r... Rare submerged pup here. Holds breath for a lo... NaN NaN NaN https://twitter.com/dog_rates/status/674632714... 5 10 None None None None None
1905 674606911342424069 6.744689e+17 4.196984e+09 2015-12-09 15:09:55 +0000 <a href="http://twitter.com/download/iphone" r... The 13/10 also takes into account this impecca... NaN NaN NaN NaN 13 10 None None None None None
1906 674468880899788800 NaN NaN 2015-12-09 06:01:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Louis. He thinks he's flying. 13/10 th... NaN NaN NaN https://twitter.com/dog_rates/status/674468880... 13 10 Louis None None None None
1907 674447403907457024 NaN NaN 2015-12-09 04:36:06 +0000 <a href="http://twitter.com/download/iphone" r... This pupper just wants a belly rub. This puppe... NaN NaN NaN https://twitter.com/dog_rates/status/674447403... 10 10 None None None pupper None
1908 674436901579923456 NaN NaN 2015-12-09 03:54:22 +0000 <a href="http://twitter.com/download/iphone" r... Meet Bailey. She plays with her food. Very chi... NaN NaN NaN https://twitter.com/dog_rates/status/674436901... 9 10 Bailey None None None None
1909 674422304705744896 NaN NaN 2015-12-09 02:56:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Ava. She doesn't understand flowers. 1... NaN NaN NaN https://twitter.com/dog_rates/status/674422304... 12 10 Ava None None None None
1910 674416750885273600 NaN NaN 2015-12-09 02:34:18 +0000 <a href="http://twitter.com/download/iphone" r... This is Jonah. He's a Stinted Fisher Price. En... NaN NaN NaN https://twitter.com/dog_rates/status/674416750... 10 10 Jonah None None None None
1911 674410619106390016 NaN NaN 2015-12-09 02:09:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Lenny. He wants to be a sprinkler. 10/... NaN NaN NaN https://twitter.com/dog_rates/status/674410619... 10 10 Lenny None None None None
1912 674394782723014656 NaN NaN 2015-12-09 01:07:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Gary. He's a hide and seek champion. S... NaN NaN NaN https://twitter.com/dog_rates/status/674394782... 8 10 Gary None None None None
1913 674372068062928900 NaN NaN 2015-12-08 23:36:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chesney. On the outside he stays calm &am... NaN NaN NaN https://twitter.com/dog_rates/status/674372068... 10 10 Chesney None None None None
1914 674330906434379776 6.658147e+17 1.637468e+07 2015-12-08 20:53:11 +0000 <a href="http://twitter.com/download/iphone" r... 13/10\n@ABC7 NaN NaN NaN NaN 13 10 None None None None None
1915 674318007229923329 NaN NaN 2015-12-08 20:01:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Lennon. He's in quite the predicament.... NaN NaN NaN https://twitter.com/dog_rates/status/674318007... 8 10 Lennon None None pupper None
1916 674307341513269249 NaN NaN 2015-12-08 19:19:32 +0000 <a href="http://vine.co" rel="nofollow">Vine -... This is life-changing. 12/10 https://t.co/SroT... NaN NaN NaN https://vine.co/v/i7nWzrenw5h 12 10 life None None None None
1917 674291837063053312 NaN NaN 2015-12-08 18:17:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Kenny. He just wants to be included in... NaN NaN NaN https://twitter.com/dog_rates/status/674291837... 11 10 Kenny None None None None
1918 674271431610523648 NaN NaN 2015-12-08 16:56:51 +0000 <a href="http://twitter.com/download/iphone" r... "AT DAWN, WE RIDE"\n10/10 for both dogs https:... NaN NaN NaN https://twitter.com/dog_rates/status/674271431... 10 10 None None None None None
1919 674269164442398721 NaN NaN 2015-12-08 16:47:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Bob. He's a Juniper Fitzsimmons. His b... NaN NaN NaN https://twitter.com/dog_rates/status/674269164... 8 10 Bob None None None None
1920 674265582246694913 NaN NaN 2015-12-08 16:33:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Henry. He's a shit dog. Short pointy e... NaN NaN NaN https://twitter.com/dog_rates/status/674265582... 2 10 Henry None None None None
1921 674262580978937856 NaN NaN 2015-12-08 16:21:41 +0000 <a href="http://twitter.com/download/iphone" r... This is Gus. He's super stoked about being an ... NaN NaN NaN https://twitter.com/dog_rates/status/674262580... 9 10 Gus None None pupper None
1922 674255168825880576 NaN NaN 2015-12-08 15:52:13 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bobbay. He's a marshmallow wizard... NaN NaN NaN https://twitter.com/dog_rates/status/674255168... 10 10 Bobbay None None None None
1923 674082852460433408 NaN NaN 2015-12-08 04:27:30 +0000 <a href="http://twitter.com/download/iphone" r... This is a Sagitariot Baklava mix. Loves her ne... NaN NaN NaN https://twitter.com/dog_rates/status/674082852... 11 10 a None None None None
1924 674075285688614912 NaN NaN 2015-12-08 03:57:26 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mitch. He thinks that's a hat. No... NaN NaN NaN https://twitter.com/dog_rates/status/674075285... 11 10 Mitch None None None None
1925 674063288070742018 NaN NaN 2015-12-08 03:09:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Earl. Earl is lost. Someone help Earl.... NaN NaN NaN https://twitter.com/dog_rates/status/674063288... 5 10 Earl None None None None
1926 674053186244734976 NaN NaN 2015-12-08 02:29:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Stanley. Yes he is aware of the spoon'... NaN NaN NaN https://twitter.com/dog_rates/status/674053186... 10 10 Stanley None None None None
1927 674051556661161984 NaN NaN 2015-12-08 02:23:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Lucy. She knits. Specializes in tobogg... NaN NaN NaN https://twitter.com/dog_rates/status/674051556... 10 10 Lucy None None None None
1928 674045139690631169 NaN NaN 2015-12-08 01:57:39 +0000 <a href="http://twitter.com/download/iphone" r... Herd of wild dogs here. Not sure what they're ... NaN NaN NaN https://twitter.com/dog_rates/status/674045139... 3 10 None None None None None
1929 674042553264685056 NaN NaN 2015-12-08 01:47:22 +0000 <a href="http://twitter.com/download/iphone" r... Yea I can't handle the cuteness anymore. Curls... NaN NaN NaN https://twitter.com/dog_rates/status/674042553... 12 10 None None None None None
1930 674038233588723717 NaN NaN 2015-12-08 01:30:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Kaiya. She's an aspiring shoe model. 1... NaN NaN NaN https://twitter.com/dog_rates/status/674038233... 12 10 Kaiya None None pupper None
1931 674036086168010753 NaN NaN 2015-12-08 01:21:40 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She has no eyes &amp; her face has... NaN NaN NaN https://twitter.com/dog_rates/status/674036086... 9 10 Daisy None None None None
1932 674024893172875264 NaN NaN 2015-12-08 00:37:11 +0000 <a href="http://twitter.com/download/iphone" r... When you realize it doesn't matter how hard yo... NaN NaN NaN https://twitter.com/dog_rates/status/674024893... 10 10 None None None None None
1933 674019345211760640 NaN NaN 2015-12-08 00:15:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Acro. You briefly see her out of the c... NaN NaN NaN https://twitter.com/dog_rates/status/674019345... 10 10 Acro None None None None
1934 674014384960745472 NaN NaN 2015-12-07 23:55:26 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Aiden. His eyes are magical. Love... NaN NaN NaN https://twitter.com/dog_rates/status/674014384... 11 10 Aiden None None None None
1935 674008982932058114 NaN NaN 2015-12-07 23:33:58 +0000 <a href="http://twitter.com/download/iphone" r... This pup is sad bc he didn't get to be the toy... NaN NaN NaN https://twitter.com/dog_rates/status/674008982... 10 10 None None None None None
1936 673956914389192708 NaN NaN 2015-12-07 20:07:04 +0000 <a href="http://twitter.com/download/iphone" r... This is one esteemed pupper. Just graduated co... NaN NaN NaN https://twitter.com/dog_rates/status/673956914... 10 10 one None None pupper None
1937 673919437611909120 NaN NaN 2015-12-07 17:38:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Obie. He is on guard watching for evil... NaN NaN NaN https://twitter.com/dog_rates/status/673919437... 11 10 Obie None None pupper None
1938 673906403526995968 NaN NaN 2015-12-07 16:46:21 +0000 <a href="http://twitter.com/download/iphone" r... Guys I'm getting real tired of this. We only r... NaN NaN NaN https://twitter.com/dog_rates/status/673906403... 3 10 None None None None None
1939 673887867907739649 NaN NaN 2015-12-07 15:32:42 +0000 <a href="http://twitter.com/download/iphone" r... When you're having a great time sleeping and y... NaN NaN NaN https://twitter.com/dog_rates/status/673887867... 10 10 None None None None None
1940 673716320723169284 6.737159e+17 4.196984e+09 2015-12-07 04:11:02 +0000 <a href="http://twitter.com/download/iphone" r... The millennials have spoken and we've decided ... NaN NaN NaN NaN 1 10 None None None None None
1941 673715861853720576 NaN NaN 2015-12-07 04:09:13 +0000 <a href="http://twitter.com/download/iphone" r... This is a heavily opinionated dog. Loves walls... NaN NaN NaN https://twitter.com/dog_rates/status/673715861... 4 10 a None None None None
1942 673711475735838725 NaN NaN 2015-12-07 03:51:47 +0000 <a href="http://twitter.com/download/iphone" r... 🎶 HELLO FROM THE OTHER SIIIIIIIIDE 🎶 10/10 htt... NaN NaN NaN https://twitter.com/dog_rates/status/673711475... 10 10 None None None None None
1943 673709992831262724 NaN NaN 2015-12-07 03:45:53 +0000 <a href="http://twitter.com/download/iphone" r... I know a lot of you are studying for finals. G... NaN NaN NaN https://twitter.com/dog_rates/status/673709992... 12 10 None None None None None
1944 673708611235921920 NaN NaN 2015-12-07 03:40:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Riley. She's just an adorable football... NaN NaN NaN https://twitter.com/dog_rates/status/673708611... 12 10 Riley None None None None
1945 673707060090052608 NaN NaN 2015-12-07 03:34:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Raymond. He's absolutely terrified of ... NaN NaN NaN https://twitter.com/dog_rates/status/673707060... 10 10 Raymond None None pupper None
1946 673705679337693185 NaN NaN 2015-12-07 03:28:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Dot. He found out you only pretended t... NaN NaN NaN https://twitter.com/dog_rates/status/673705679... 8 10 Dot None None None None
1947 673700254269775872 NaN NaN 2015-12-07 03:07:12 +0000 <a href="http://twitter.com/download/iphone" r... Large blue dog here. Cool shades. Flipping us ... NaN NaN NaN https://twitter.com/dog_rates/status/673700254... 3 10 None None None None None
1948 673697980713705472 NaN NaN 2015-12-07 02:58:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Pickles. She's a tiny pointy pupper. A... NaN NaN NaN https://twitter.com/dog_rates/status/673697980... 8 10 Pickles None None pupper None
1949 673689733134946305 NaN NaN 2015-12-07 02:25:23 +0000 <a href="http://twitter.com/download/iphone" r... When you're having a blast and remember tomorr... NaN NaN NaN https://twitter.com/dog_rates/status/673689733... 11 10 None None None None None
1950 673688752737402881 NaN NaN 2015-12-07 02:21:29 +0000 <a href="http://twitter.com/download/iphone" r... Meet Larry. He doesn't know how to shoe. 9/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/673688752... 9 10 Larry None None None None
1951 673686845050527744 NaN NaN 2015-12-07 02:13:55 +0000 <a href="http://twitter.com/download/iphone" r... This is George. He's upset that the 4th of Jul... NaN NaN NaN https://twitter.com/dog_rates/status/673686845... 11 10 George None None None None
1952 673680198160809984 NaN NaN 2015-12-07 01:47:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Shnuggles. I would kill for Shnuggles.... NaN NaN NaN https://twitter.com/dog_rates/status/673680198... 13 10 Shnuggles None None None None
1953 673662677122719744 NaN NaN 2015-12-07 00:37:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Kendall. 12/10 would cuddle the hell o... NaN NaN NaN https://twitter.com/dog_rates/status/673662677... 12 10 Kendall None None None None
1954 673656262056419329 NaN NaN 2015-12-07 00:12:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Albert AKA King Banana Peel. He's a ki... NaN NaN NaN https://twitter.com/dog_rates/status/673656262... 10 10 Albert None None pupper None
1955 673636718965334016 NaN NaN 2015-12-06 22:54:44 +0000 <a href="http://twitter.com/download/iphone" r... This is a Lofted Aphrodisiac Terrier named Kip... NaN NaN NaN https://twitter.com/dog_rates/status/673636718... 10 10 a None None None None
1956 673612854080196609 NaN NaN 2015-12-06 21:19:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffri. He's a speckled ice pupper. Ve... NaN NaN NaN https://twitter.com/dog_rates/status/673612854... 7 10 Jeffri None None pupper None
1957 673583129559498752 NaN NaN 2015-12-06 19:21:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Sandy. She loves her spot by the tree.... NaN NaN NaN https://twitter.com/dog_rates/status/673583129... 11 10 Sandy None None None None
1958 673580926094458881 NaN NaN 2015-12-06 19:13:01 +0000 <a href="http://twitter.com/download/iphone" r... When you ask your professor about extra credit... NaN NaN NaN https://twitter.com/dog_rates/status/673580926... 8 10 None None None None None
1959 673576835670777856 NaN NaN 2015-12-06 18:56:46 +0000 <a href="http://twitter.com/download/iphone" r... Sun burnt dog here. Quite large. Wants to prom... NaN NaN NaN https://twitter.com/dog_rates/status/673576835... 7 10 None None None None None
1960 673363615379013632 NaN NaN 2015-12-06 04:49:31 +0000 <a href="http://twitter.com/download/iphone" r... This little pupper can't wait for Christmas. H... NaN NaN NaN https://twitter.com/dog_rates/status/673363615... 11 10 None None None pupper None
1961 673359818736984064 NaN NaN 2015-12-06 04:34:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Steve. He was just relaxing in hot tub... NaN NaN NaN https://twitter.com/dog_rates/status/673359818... 8 10 Steve None None None None
1962 673355879178194945 NaN NaN 2015-12-06 04:18:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Koda. She's a boss. Helps shift gears.... NaN NaN NaN https://twitter.com/dog_rates/status/673355879... 11 10 Koda None None None None
1963 673352124999274496 NaN NaN 2015-12-06 04:03:51 +0000 <a href="http://twitter.com/download/iphone" r... *lets out a tiny screech and then goes into co... NaN NaN NaN https://twitter.com/dog_rates/status/673352124... 12 10 None None None None None
1964 673350198937153538 NaN NaN 2015-12-06 03:56:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Bella. She's a Genghis Flopped Canuck.... NaN NaN NaN https://twitter.com/dog_rates/status/673350198... 9 10 Bella None None None None
1965 673345638550134785 NaN NaN 2015-12-06 03:38:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Gerald. He's a fluffy lil yellow pup. ... NaN NaN NaN https://twitter.com/dog_rates/status/673345638... 7 10 Gerald None None None None
1966 673343217010679808 NaN NaN 2015-12-06 03:28:27 +0000 <a href="http://twitter.com/download/iphone" r... IT'S SO SMALL ERMERGERF 11/10 https://t.co/dNU... NaN NaN NaN https://twitter.com/dog_rates/status/673343217... 11 10 None None None None None
1967 673342308415348736 NaN NaN 2015-12-06 03:24:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Django. He's a skilled assassin pupper... NaN NaN NaN https://twitter.com/dog_rates/status/673342308... 10 10 Django None None pupper None
1968 673320132811366400 NaN NaN 2015-12-06 01:56:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Frankie. He's wearing blush. 11/10 rea... NaN NaN NaN https://twitter.com/dog_rates/status/673320132... 11 10 Frankie None None None None
1969 673317986296586240 NaN NaN 2015-12-06 01:48:12 +0000 <a href="http://twitter.com/download/iphone" r... Take a moment and appreciate how these two dog... NaN NaN NaN https://twitter.com/dog_rates/status/673317986... 10 10 None None None None None
1970 673295268553605120 NaN NaN 2015-12-06 00:17:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Eve. She's a raging alcoholic 8/10 (would... NaN NaN NaN https://twitter.com/dog_rates/status/673295268... 8 10 Eve None None pupper None
1971 673270968295534593 NaN NaN 2015-12-05 22:41:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Mac. His dad's probably a lawyer. 11/1... NaN NaN NaN https://twitter.com/dog_rates/status/673270968... 11 10 Mac None None None None
1972 673240798075449344 NaN NaN 2015-12-05 20:41:29 +0000 <a href="http://twitter.com/download/iphone" r... Magical floating dog here. Very calm. Always h... NaN NaN NaN https://twitter.com/dog_rates/status/673240798... 6 10 None None None None None
1973 673213039743795200 NaN NaN 2015-12-05 18:51:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Dexter. He just got some big news. 10/... NaN NaN NaN https://twitter.com/dog_rates/status/673213039... 10 10 Dexter None None None None
1974 673148804208660480 NaN NaN 2015-12-05 14:35:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Fletcher. He's had a ruff night. No mo... NaN NaN NaN https://twitter.com/dog_rates/status/673148804... 8 10 Fletcher None None pupper None
1975 672997845381865473 NaN NaN 2015-12-05 04:36:04 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kenzie. She is a fluff ball. 12/1... NaN NaN NaN https://twitter.com/dog_rates/status/672997845... 12 10 Kenzie None None None None
1976 672995267319328768 NaN NaN 2015-12-05 04:25:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Pumpkin. He can look in two different ... NaN NaN NaN https://twitter.com/dog_rates/status/672995267... 8 10 Pumpkin None None None None
1977 672988786805112832 NaN NaN 2015-12-05 04:00:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Schnozz. He's had a blurred tail since... NaN NaN NaN https://twitter.com/dog_rates/status/672988786... 10 10 Schnozz None None pupper None
1978 672984142909456390 NaN NaN 2015-12-05 03:41:37 +0000 <a href="http://twitter.com/download/iphone" r... Very happy pup here. Always smiling. Loves his... NaN NaN NaN https://twitter.com/dog_rates/status/672984142... 9 10 None None None None None
1979 672980819271634944 NaN NaN 2015-12-05 03:28:25 +0000 <a href="http://twitter.com/download/iphone" r... Extraordinary dog here. Looks large. Just a he... NaN NaN NaN https://twitter.com/dog_rates/status/672980819... 5 10 None None None None None
1980 672975131468300288 NaN NaN 2015-12-05 03:05:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Chuckles. He is one skeptical pupper. ... NaN NaN NaN https://twitter.com/dog_rates/status/672975131... 10 10 Chuckles None None pupper None
1981 672970152493887488 NaN NaN 2015-12-05 02:46:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Chet. He's having a hard time. Really ... NaN NaN NaN https://twitter.com/dog_rates/status/672970152... 7 10 Chet None None pupper None
1982 672968025906282496 NaN NaN 2015-12-05 02:37:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Gustaf. He's a purebred Chevy Equinox.... NaN NaN NaN https://twitter.com/dog_rates/status/672968025... 11 10 Gustaf None None None None
1983 672964561327235073 NaN NaN 2015-12-05 02:23:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Terry. He's a Toasty Western Sriracha.... NaN NaN NaN https://twitter.com/dog_rates/status/672964561... 10 10 Terry None None None None
1984 672902681409806336 NaN NaN 2015-12-04 22:17:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimison. He's stuck in a pot. Damn it ... NaN NaN NaN https://twitter.com/dog_rates/status/672902681... 9 10 Jimison None None None None
1985 672898206762672129 NaN NaN 2015-12-04 22:00:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Cheryl AKA Queen Pupper of the Skies. ... NaN NaN NaN https://twitter.com/dog_rates/status/672898206... 11 10 Cheryl None None pupper None
1986 672884426393653248 NaN NaN 2015-12-04 21:05:23 +0000 <a href="http://twitter.com/download/iphone" r... Marvelous dog here. Rad ears. Not very soft. L... NaN NaN NaN https://twitter.com/dog_rates/status/672884426... 6 10 None None None None None
1987 672877615439593473 NaN NaN 2015-12-04 20:38:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar. He's getting bombarded with the... NaN NaN NaN https://twitter.com/dog_rates/status/672877615... 8 10 Oscar None None None None
1988 672834301050937345 NaN NaN 2015-12-04 17:46:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Ed. He's not mad, just disappointed. 1... NaN NaN NaN https://twitter.com/dog_rates/status/672834301... 10 10 Ed None None None None
1989 672828477930868736 NaN NaN 2015-12-04 17:23:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's a Timbuk Slytherin. Eats h... NaN NaN NaN https://twitter.com/dog_rates/status/672828477... 9 10 Jerry None None None None
1990 672640509974827008 NaN NaN 2015-12-04 04:56:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Leonidas. He just got rekt by a snowba... NaN NaN NaN https://twitter.com/dog_rates/status/672640509... 9 10 Leonidas None None None None
1991 672622327801233409 NaN NaN 2015-12-04 03:43:54 +0000 <a href="http://twitter.com/download/iphone" r... This lil pupper is sad because we haven't foun... NaN NaN NaN https://twitter.com/dog_rates/status/672622327... 12 10 None None None pupper None
1992 672614745925664768 NaN NaN 2015-12-04 03:13:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Norman. Doesn't bark much. Very docile... NaN NaN NaN https://twitter.com/dog_rates/status/672614745... 6 10 Norman None None pupper None
1993 672609152938721280 NaN NaN 2015-12-04 02:51:33 +0000 <a href="http://twitter.com/download/iphone" r... This is Caryl. Likes to get in the microwave. ... NaN NaN NaN https://twitter.com/dog_rates/status/672609152... 9 10 Caryl None None None None
1994 672604026190569472 NaN NaN 2015-12-04 02:31:10 +0000 <a href="http://twitter.com/download/iphone" r... This is a baby Rand Paul. Curls for days. 11/1... NaN NaN NaN https://twitter.com/dog_rates/status/672604026... 11 10 a None None None None
1995 672594978741354496 NaN NaN 2015-12-04 01:55:13 +0000 <a href="http://twitter.com/download/iphone" r... Meet Scott. Just trying to catch his train to ... NaN NaN NaN https://twitter.com/dog_rates/status/672594978... 9 10 Scott None None pupper None
1996 672591762242805761 NaN NaN 2015-12-04 01:42:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Taz. He boxes leaves. 10/10 https://t.... NaN NaN NaN https://twitter.com/dog_rates/status/672591762... 10 10 Taz None None None None
1997 672591271085670400 NaN NaN 2015-12-04 01:40:29 +0000 <a href="http://twitter.com/download/iphone" r... Lots of pups here. All are Judea Hazelnuts. Ex... NaN NaN NaN https://twitter.com/dog_rates/status/672591271... 8 10 None None None None None
1998 672538107540070400 NaN NaN 2015-12-03 22:09:14 +0000 <a href="http://twitter.com/download/iphone" r... Meet Darby. He's a Fiscal Tutankhamen Waxbeard... NaN NaN NaN https://twitter.com/dog_rates/status/672538107... 7 10 Darby None None None None
1999 672523490734551040 NaN NaN 2015-12-03 21:11:09 +0000 <a href="http://twitter.com/download/iphone" r... When she says she'll be ready in a minute but ... NaN NaN NaN https://twitter.com/dog_rates/status/672523490... 10 10 None None None None None
2000 672488522314567680 NaN NaN 2015-12-03 18:52:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Jackie. She was all ready to go out, b... NaN NaN NaN https://twitter.com/dog_rates/status/672488522... 10 10 Jackie None None None None
2001 672482722825261057 NaN NaN 2015-12-03 18:29:09 +0000 <a href="http://twitter.com/download/iphone" r... This is light saber pup. Ready to fight off ev... NaN NaN NaN https://twitter.com/dog_rates/status/672482722... 10 10 light None None None None
2002 672481316919734272 NaN NaN 2015-12-03 18:23:34 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Jazz. She should be on the cover ... NaN NaN NaN https://twitter.com/dog_rates/status/672481316... 12 10 Jazz None None pupper None
2003 672475084225949696 NaN NaN 2015-12-03 17:58:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Buddy. He's photogenic af. Loves to se... NaN NaN NaN https://twitter.com/dog_rates/status/672475084... 8 10 Buddy None None None None
2004 672466075045466113 NaN NaN 2015-12-03 17:23:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Franq and Pablo. They're working hard ... NaN NaN NaN https://twitter.com/dog_rates/status/672466075... 12 10 Franq None None None None
2005 672272411274932228 NaN NaN 2015-12-03 04:33:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Pippin. He is terrified of his new lit... NaN NaN NaN https://twitter.com/dog_rates/status/672272411... 11 10 Pippin None None None None
2006 672267570918129665 NaN NaN 2015-12-03 04:14:13 +0000 <a href="http://twitter.com/download/iphone" r... When you accidentally open up the front facing... NaN NaN NaN https://twitter.com/dog_rates/status/672267570... 10 10 None None None None None
2007 672264251789176834 NaN NaN 2015-12-03 04:01:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Kreg. He has the eyes of a tyrannical ... NaN NaN NaN https://twitter.com/dog_rates/status/672264251... 10 10 Kreg None None None None
2008 672256522047614977 NaN NaN 2015-12-03 03:30:19 +0000 <a href="http://twitter.com/download/iphone" r... Mighty rare dogs here. Long smooth necks. Grea... NaN NaN NaN https://twitter.com/dog_rates/status/672256522... 8 10 None None None None None
2009 672254177670729728 NaN NaN 2015-12-03 03:21:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Rolf. He's having the time of his life... NaN NaN NaN https://twitter.com/dog_rates/status/672254177... 11 10 Rolf None None pupper None
2010 672248013293752320 NaN NaN 2015-12-03 02:56:30 +0000 <a href="http://twitter.com/download/iphone" r... 10/10 for dog. 7/10 for cat. 12/10 for human. ... NaN NaN NaN https://twitter.com/dog_rates/status/672248013... 10 10 None None None None None
2011 672245253877968896 NaN NaN 2015-12-03 02:45:32 +0000 <a href="http://twitter.com/download/iphone" r... Meet Snickers. He's adorable. Also comes in t-... NaN NaN NaN https://twitter.com/dog_rates/status/672245253... 12 10 Snickers None None None None
2012 672239279297454080 NaN NaN 2015-12-03 02:21:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Ridley. He doesn't know how to couch. ... NaN NaN NaN https://twitter.com/dog_rates/status/672239279... 7 10 Ridley None None None None
2013 672231046314901505 NaN NaN 2015-12-03 01:49:05 +0000 <a href="http://twitter.com/download/iphone" r... Exotic underwater dog here. Very shy. Wont ret... NaN NaN NaN https://twitter.com/dog_rates/status/672231046... 5 10 None None None None None
2014 672222792075620352 NaN NaN 2015-12-03 01:16:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Cal. He's a Swedish Geriatric Cheddar.... NaN NaN NaN https://twitter.com/dog_rates/status/672222792... 9 10 Cal None None None None
2015 672205392827572224 NaN NaN 2015-12-03 00:07:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Opal. He's a Royal John Coctostan. Rea... NaN NaN NaN https://twitter.com/dog_rates/status/672205392... 9 10 Opal None None pupper None
2016 672169685991993344 NaN NaN 2015-12-02 21:45:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Bradley. That is his sandwich. He carr... NaN NaN NaN https://twitter.com/dog_rates/status/672169685... 10 10 Bradley None None None None
2017 672160042234327040 NaN NaN 2015-12-02 21:06:56 +0000 <a href="http://twitter.com/download/iphone" r... This is Bubba. He's a Titted Peebles Aorta. Ev... NaN NaN NaN https://twitter.com/dog_rates/status/672160042... 8 10 Bubba None None pupper None
2018 672139350159835138 NaN NaN 2015-12-02 19:44:43 +0000 <a href="http://twitter.com/download/iphone" r... This pup has a heart on its ass and that is do... NaN NaN NaN https://twitter.com/dog_rates/status/672139350... 12 10 None None None None None
2019 672125275208069120 NaN NaN 2015-12-02 18:48:47 +0000 <a href="http://twitter.com/download/iphone" r... This is just impressive I have nothing else to... NaN NaN NaN https://twitter.com/dog_rates/status/672125275... 11 10 just None None None None
2020 672095186491711488 NaN NaN 2015-12-02 16:49:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Tuco. That's the toast that killed his... NaN NaN NaN https://twitter.com/dog_rates/status/672095186... 9 10 Tuco None None None None
2021 672082170312290304 NaN NaN 2015-12-02 15:57:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Patch. He wants to be a Christmas tree... NaN NaN NaN https://twitter.com/dog_rates/status/672082170... 11 10 Patch None None None None
2022 672068090318987265 NaN NaN 2015-12-02 15:01:33 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Gizmo. He's upset because he's no... NaN NaN NaN https://twitter.com/dog_rates/status/672068090... 7 10 Gizmo None None None None
2023 671896809300709376 NaN NaN 2015-12-02 03:40:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. She fell asleep on a piece of pi... NaN NaN NaN https://twitter.com/dog_rates/status/671896809... 10 10 Lola None None None None
2024 671891728106971137 NaN NaN 2015-12-02 03:20:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Mojo. Apparently he's too cute for a s... NaN NaN NaN https://twitter.com/dog_rates/status/671891728... 11 10 Mojo None None None None
2025 671882082306625538 NaN NaN 2015-12-02 02:42:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Batdog. He's sleeping now but when he ... NaN NaN NaN https://twitter.com/dog_rates/status/671882082... 11 10 Batdog None None None None
2026 671879137494245376 NaN NaN 2015-12-02 02:30:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Brad. He's a chubby lil pup. Doesn't r... NaN NaN NaN https://twitter.com/dog_rates/status/671879137... 5 10 Brad None None None None
2027 671874878652489728 NaN NaN 2015-12-02 02:13:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Mia. She was specifically told not get... NaN NaN NaN https://twitter.com/dog_rates/status/671874878... 10 10 Mia None None None None
2028 671866342182637568 NaN NaN 2015-12-02 01:39:53 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dylan. He can use a fork but clearly can'... NaN NaN NaN https://twitter.com/dog_rates/status/671866342... 10 10 Dylan None None None None
2029 671855973984772097 NaN NaN 2015-12-02 00:58:41 +0000 <a href="http://twitter.com/download/iphone" r... Remarkable dog here. Walks on back legs really... NaN NaN NaN https://twitter.com/dog_rates/status/671855973... 8 10 None None None None None
2030 671789708968640512 NaN NaN 2015-12-01 20:35:22 +0000 <a href="http://twitter.com/download/iphone" r... This is space pup. He's very confused. Tries t... NaN NaN NaN https://twitter.com/dog_rates/status/671789708... 13 10 space None None None None
2031 671768281401958400 NaN NaN 2015-12-01 19:10:13 +0000 <a href="http://twitter.com/download/iphone" r... When you try to recreate the scene from Lady &... NaN NaN NaN https://twitter.com/dog_rates/status/671768281... 10 10 None None None None None
2032 671763349865160704 NaN NaN 2015-12-01 18:50:38 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Mark. He's a good dog. Always rea... NaN NaN NaN https://twitter.com/dog_rates/status/671763349... 9 10 Mark None None None None
2033 671744970634719232 NaN NaN 2015-12-01 17:37:36 +0000 <a href="http://twitter.com/download/iphone" r... Very fit horned dog here. Looks powerful. Not ... NaN NaN NaN https://twitter.com/dog_rates/status/671744970... 6 10 None None None None None
2034 671743150407421952 NaN NaN 2015-12-01 17:30:22 +0000 <a href="http://twitter.com/download/iphone" r... This is a Tuscaloosa Alcatraz named Jacob (Yac... NaN NaN NaN https://twitter.com/dog_rates/status/671743150... 11 10 a None None None None
2035 671735591348891648 NaN NaN 2015-12-01 17:00:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Oscar. He's ready for Christmas. 11/10... NaN NaN NaN https://twitter.com/dog_rates/status/671735591... 11 10 Oscar None None None None
2036 671729906628341761 6.715610e+17 4.196984e+09 2015-12-01 16:37:44 +0000 <a href="http://twitter.com/download/iphone" r... I'm just going to leave this one here as well.... NaN NaN NaN https://twitter.com/dog_rates/status/671729906... 13 10 None None None None None
2037 671561002136281088 NaN NaN 2015-12-01 05:26:34 +0000 <a href="http://twitter.com/download/iphone" r... This is the best thing I've ever seen so sprea... NaN NaN NaN https://twitter.com/dog_rates/status/671561002... 13 10 the None None None None
2038 671550332464455680 6.715449e+17 4.196984e+09 2015-12-01 04:44:10 +0000 <a href="http://twitter.com/download/iphone" r... After 22 minutes of careful deliberation this ... NaN NaN NaN NaN 1 10 None None None None None
2039 671547767500775424 NaN NaN 2015-12-01 04:33:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Marley. She chews shoes then feels ext... NaN NaN NaN https://twitter.com/dog_rates/status/671547767... 10 10 Marley None None None None
2040 671544874165002241 NaN NaN 2015-12-01 04:22:29 +0000 <a href="http://twitter.com/download/iphone" r... Interesting dog here. Very large. Purple. Mani... NaN NaN NaN https://twitter.com/dog_rates/status/671544874... 6 10 None None None None None
2041 671542985629241344 NaN NaN 2015-12-01 04:14:59 +0000 <a href="http://twitter.com/download/iphone" r... This is JD (stands for "just dog"). He's like ... NaN NaN NaN https://twitter.com/dog_rates/status/671542985... 10 10 JD None None None None
2042 671538301157904385 NaN NaN 2015-12-01 03:56:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Baxter. He's very calm. Hasn't eaten i... NaN NaN NaN https://twitter.com/dog_rates/status/671538301... 8 10 Baxter None None None None
2043 671536543010570240 NaN NaN 2015-12-01 03:49:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Reginald. He's pondering what life wou... NaN NaN NaN https://twitter.com/dog_rates/status/671536543... 9 10 Reginald None None None None
2044 671533943490011136 NaN NaN 2015-12-01 03:39:03 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog here. Spiffy mohawk. Sharp mout... NaN NaN NaN https://twitter.com/dog_rates/status/671533943... 6 10 None None None None None
2045 671528761649688577 NaN NaN 2015-12-01 03:18:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jax. He's in the middle of a serious conv... NaN NaN NaN https://twitter.com/dog_rates/status/671528761... 10 10 Jax None None None None
2046 671520732782923777 NaN NaN 2015-12-01 02:46:33 +0000 <a href="http://twitter.com/download/iphone" r... Meet Alejandro. He's an extremely seductive pu... NaN NaN NaN https://twitter.com/dog_rates/status/671520732... 10 10 Alejandro None None None None
2047 671518598289059840 NaN NaN 2015-12-01 02:38:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Scruffers. He's being violated on mult... NaN NaN NaN https://twitter.com/dog_rates/status/671518598... 9 10 Scruffers None None None None
2048 671511350426865664 NaN NaN 2015-12-01 02:09:16 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Hammond. He's just a wee lil pup.... NaN NaN NaN https://twitter.com/dog_rates/status/671511350... 8 10 Hammond None None None None
2049 671504605491109889 NaN NaN 2015-12-01 01:42:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Charlie. He was just informed that dog... NaN NaN NaN https://twitter.com/dog_rates/status/671504605... 11 10 Charlie None None None None
2050 671497587707535361 NaN NaN 2015-12-01 01:14:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Pip. He is a ship captain. Many years ... NaN NaN NaN https://twitter.com/dog_rates/status/671497587... 11 10 Pip None None None None
2051 671488513339211776 NaN NaN 2015-12-01 00:38:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Julius. He's a cool dog. Carries seash... NaN NaN NaN https://twitter.com/dog_rates/status/671488513... 8 10 Julius None None None None
2052 671486386088865792 NaN NaN 2015-12-01 00:30:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Malcolm. He just saw a spider. 10/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/671486386... 10 10 Malcolm None None None None
2053 671485057807351808 NaN NaN 2015-12-01 00:24:48 +0000 <a href="http://twitter.com/download/iphone" r... Meet Penelope. She is a white Macadamias Duode... NaN NaN NaN https://twitter.com/dog_rates/status/671485057... 11 10 Penelope None None None None
2054 671390180817915904 NaN NaN 2015-11-30 18:07:47 +0000 <a href="http://twitter.com/download/iphone" r... Striped dog here. Having fun playing on back. ... NaN NaN NaN https://twitter.com/dog_rates/status/671390180... 7 10 None None None None None
2055 671362598324076544 NaN NaN 2015-11-30 16:18:11 +0000 <a href="http://twitter.com/download/iphone" r... This is Tanner. He accidentally dropped all hi... NaN NaN NaN https://twitter.com/dog_rates/status/671362598... 11 10 Tanner None None None None
2056 671357843010908160 NaN NaN 2015-11-30 15:59:17 +0000 <a href="http://twitter.com/download/iphone" r... Tfw she says hello from the other side. 9/10 h... NaN NaN NaN https://twitter.com/dog_rates/status/671357843... 9 10 None None None None None
2057 671355857343524864 NaN NaN 2015-11-30 15:51:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Lou. He's a Petrarch Sunni Pinto. Well... NaN NaN NaN https://twitter.com/dog_rates/status/671355857... 10 10 Lou None None None None
2058 671347597085433856 NaN NaN 2015-11-30 15:18:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Lola. She was not fully prepared for t... NaN NaN NaN https://twitter.com/dog_rates/status/671347597... 9 10 Lola None None None None
2059 671186162933985280 NaN NaN 2015-11-30 04:37:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Sparky. That's his pancake now. He wil... NaN NaN NaN https://twitter.com/dog_rates/status/671186162... 10 10 Sparky None None None None
2060 671182547775299584 NaN NaN 2015-11-30 04:22:44 +0000 <a href="http://twitter.com/download/iphone" r... This pup holds the secrets of the universe in ... NaN NaN NaN https://twitter.com/dog_rates/status/671182547... 12 10 None None None None None
2061 671166507850801152 NaN NaN 2015-11-30 03:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Herm. It's his first day of potty trai... NaN NaN NaN https://twitter.com/dog_rates/status/671166507... 10 10 Herm None None None None
2062 671163268581498880 NaN NaN 2015-11-30 03:06:07 +0000 <a href="http://twitter.com/download/iphone" r... Pack of horned dogs here. Very team-oriented b... NaN NaN NaN https://twitter.com/dog_rates/status/671163268... 8 10 None None None None None
2063 671159727754231808 NaN NaN 2015-11-30 02:52:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Anthony. He just finished up his maste... NaN NaN NaN https://twitter.com/dog_rates/status/671159727... 5 10 Anthony None None None None
2064 671154572044468225 NaN NaN 2015-11-30 02:31:34 +0000 <a href="http://twitter.com/download/iphone" r... Meet Holly. She's trying to teach small human-... NaN NaN NaN https://twitter.com/dog_rates/status/671154572... 11 10 Holly None None None None
2065 671151324042559489 NaN NaN 2015-11-30 02:18:39 +0000 <a href="http://twitter.com/download/iphone" r... *struggling to breathe properly* 12/10 https:/... NaN NaN NaN https://twitter.com/dog_rates/status/671151324... 12 10 None None None None None
2066 671147085991960577 NaN NaN 2015-11-30 02:01:49 +0000 <a href="http://twitter.com/download/iphone" r... This is a Helvetica Listerine named Rufus. Thi... NaN NaN NaN https://twitter.com/dog_rates/status/671147085... 9 10 a None None None None
2067 671141549288370177 NaN NaN 2015-11-30 01:39:49 +0000 <a href="http://twitter.com/download/iphone" r... Neat pup here. Enjoys lettuce. Long af ears. S... NaN NaN NaN https://twitter.com/dog_rates/status/671141549... 9 10 None None None None None
2068 671138694582165504 NaN NaN 2015-11-30 01:28:28 +0000 <a href="http://twitter.com/download/iphone" r... Me running from commitment. 10/10 https://t.co... NaN NaN NaN https://twitter.com/dog_rates/status/671138694... 10 10 None None None None None
2069 671134062904504320 NaN NaN 2015-11-30 01:10:04 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Clarence. He's a western Alkaline... NaN NaN NaN https://twitter.com/dog_rates/status/671134062... 8 10 Clarence None None None None
2070 671122204919246848 NaN NaN 2015-11-30 00:22:57 +0000 <a href="http://twitter.com/download/iphone" r... Two miniature golden retrievers here. Webbed p... NaN NaN NaN https://twitter.com/dog_rates/status/671122204... 4 10 None None None None None
2071 671115716440031232 NaN NaN 2015-11-29 23:57:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Phred. He isn't steering, looking at the ... NaN NaN NaN https://twitter.com/dog_rates/status/671115716... 6 10 Phred None None None None
2072 671109016219725825 NaN NaN 2015-11-29 23:30:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Toby. He asked for chocolate cake for ... NaN NaN NaN https://twitter.com/dog_rates/status/671109016... 8 10 Toby None None None None
2073 670995969505435648 NaN NaN 2015-11-29 16:01:20 +0000 <a href="http://twitter.com/download/iphone" r... Yea I can't handle this job anymore your dogs ... NaN NaN NaN https://twitter.com/dog_rates/status/670995969... 12 10 None None None None None
2074 670842764863651840 NaN NaN 2015-11-29 05:52:33 +0000 <a href="http://twitter.com/download/iphone" r... After so many requests... here you go.\n\nGood... NaN NaN NaN https://twitter.com/dog_rates/status/670842764... 420 10 None None None None None
2075 670840546554966016 NaN NaN 2015-11-29 05:43:44 +0000 <a href="http://twitter.com/download/iphone" r... Meet Colby. He's that one cool friend that get... NaN NaN NaN https://twitter.com/dog_rates/status/670840546... 10 10 Colby None None None None
2076 670838202509447168 NaN NaN 2015-11-29 05:34:25 +0000 <a href="http://twitter.com/download/iphone" r... Pink dogs here. Unreasonably long necks. Left ... NaN NaN NaN https://twitter.com/dog_rates/status/670838202... 4 10 None None None None None
2077 670833812859932673 NaN NaN 2015-11-29 05:16:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Jett. He is unimpressed by flower. 7/1... NaN NaN NaN https://twitter.com/dog_rates/status/670833812... 7 10 Jett None None None None
2078 670832455012716544 NaN NaN 2015-11-29 05:11:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Amy. She is Queen Starburst. 10/10 une... NaN NaN NaN https://twitter.com/dog_rates/status/670832455... 10 10 Amy None None None None
2079 670826280409919488 NaN NaN 2015-11-29 04:47:03 +0000 <a href="http://twitter.com/download/iphone" r... Scary dog here. Too many legs. Extra tail. Not... NaN NaN NaN https://twitter.com/dog_rates/status/670826280... 2 10 None None None None None
2080 670823764196741120 NaN NaN 2015-11-29 04:37:03 +0000 <a href="http://twitter.com/download/iphone" r... This is Remington. He's a man dime. 12/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/670823764... 12 10 Remington None None None None
2081 670822709593571328 NaN NaN 2015-11-29 04:32:51 +0000 <a href="http://twitter.com/download/iphone" r... Can't do better than this lol. 10/10 for the o... NaN NaN NaN https://twitter.com/dog_rates/status/670822709... 10 10 None None None None None
2082 670815497391357952 NaN NaN 2015-11-29 04:04:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Sage. He likes to burn shit. 10/10 htt... NaN NaN NaN https://twitter.com/dog_rates/status/670815497... 10 10 Sage None None None None
2083 670811965569282048 NaN NaN 2015-11-29 03:50:10 +0000 <a href="http://twitter.com/download/iphone" r... Meet Maggie. She enjoys her stick in the yard.... NaN NaN NaN https://twitter.com/dog_rates/status/670811965... 10 10 Maggie None None None None
2084 670807719151067136 NaN NaN 2015-11-29 03:33:17 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Andy. He can balance on one foot,... NaN NaN NaN https://twitter.com/dog_rates/status/670807719... 11 10 Andy None None None None
2085 670804601705242624 NaN NaN 2015-11-29 03:20:54 +0000 <a href="http://twitter.com/download/iphone" r... Meet Mason. He's a total frat boy. Pretends to... NaN NaN NaN https://twitter.com/dog_rates/status/670804601... 10 10 Mason None None None None
2086 670803562457407488 NaN NaN 2015-11-29 03:16:46 +0000 <a href="http://twitter.com/download/iphone" r... I would do radical things in the name of Dog G... NaN NaN NaN https://twitter.com/dog_rates/status/670803562... 10 10 None None None None None
2087 670797304698376195 NaN NaN 2015-11-29 02:51:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Trigger. He was minding his own busine... NaN NaN NaN https://twitter.com/dog_rates/status/670797304... 11 10 Trigger None None None None
2088 670792680469889025 NaN NaN 2015-11-29 02:33:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Antony. He's a Sheraton Tetrahedron. S... NaN NaN NaN https://twitter.com/dog_rates/status/670792680... 7 10 Antony None None None None
2089 670789397210615808 NaN NaN 2015-11-29 02:20:29 +0000 <a href="http://twitter.com/download/iphone" r... Two obedient dogs here. Left one has extra leg... NaN NaN NaN https://twitter.com/dog_rates/status/670789397... 9 10 None None None None None
2090 670786190031921152 NaN NaN 2015-11-29 02:07:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Creg. You offered him a ride to work b... NaN NaN NaN https://twitter.com/dog_rates/status/670786190... 8 10 Creg None None None None
2091 670783437142401025 NaN NaN 2015-11-29 01:56:48 +0000 <a href="http://twitter.com/download/iphone" r... Flamboyant pup here. Probably poisonous. Won't... NaN NaN NaN https://twitter.com/dog_rates/status/670783437... 1 10 None None None None None
2092 670782429121134593 NaN NaN 2015-11-29 01:52:48 +0000 <a href="http://twitter.com/download/iphone" r... This dude slaps your girl's ass what do you do... NaN NaN NaN https://twitter.com/dog_rates/status/670782429... 5 10 None None None None None
2093 670780561024270336 NaN NaN 2015-11-29 01:45:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Traviss. He has no ears. Two rare dogs... NaN NaN NaN https://twitter.com/dog_rates/status/670780561... 7 10 Traviss None None None None
2094 670778058496974848 NaN NaN 2015-11-29 01:35:26 +0000 <a href="http://twitter.com/download/iphone" r... "To bone or not to bone?"\n10/10 https://t.co/... NaN NaN NaN https://twitter.com/dog_rates/status/670778058... 10 10 None None None None None
2095 670764103623966721 NaN NaN 2015-11-29 00:39:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Vincent. He's a wild Adderall Cayenne. Sh... NaN NaN NaN https://twitter.com/dog_rates/status/670764103... 10 10 Vincent None None None None
2096 670755717859713024 NaN NaN 2015-11-29 00:06:39 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Gin &amp; Tonic. They're having a... NaN NaN NaN https://twitter.com/dog_rates/status/670755717... 9 10 Gin None None None None
2097 670733412878163972 NaN NaN 2015-11-28 22:38:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Jerry. He's a great listener. Low main... NaN NaN NaN https://twitter.com/dog_rates/status/670733412... 8 10 Jerry None None None None
2098 670727704916926465 NaN NaN 2015-11-28 22:15:21 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeffrie. He's a handheld pup. Excellen... NaN NaN NaN https://twitter.com/dog_rates/status/670727704... 10 10 Jeffrie None None None None
2099 670717338665226240 NaN NaN 2015-11-28 21:34:09 +0000 <a href="http://twitter.com/download/iphone" r... *screams for a little bit and then crumples to... NaN NaN NaN https://twitter.com/dog_rates/status/670717338... 12 10 None None None None None
2100 670704688707301377 NaN NaN 2015-11-28 20:43:53 +0000 <a href="http://twitter.com/download/iphone" r... Meet Danny. He's too good to look at the road ... NaN NaN NaN https://twitter.com/dog_rates/status/670704688... 6 10 Danny None None None None
2101 670691627984359425 NaN NaN 2015-11-28 19:51:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Ester. He has a cocaine problem. This ... NaN NaN NaN https://twitter.com/dog_rates/status/670691627... 8 10 Ester None None None None
2102 670679630144274432 NaN NaN 2015-11-28 19:04:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Pluto. He's holding little waddling do... NaN NaN NaN https://twitter.com/dog_rates/status/670679630... 8 10 Pluto None None None None
2103 670676092097810432 NaN NaN 2015-11-28 18:50:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Bloo. He's a Westminster Cîroc. Doesn'... NaN NaN NaN https://twitter.com/dog_rates/status/670676092... 8 10 Bloo None None None None
2104 670668383499735048 NaN NaN 2015-11-28 18:19:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a magical dog. Only appe... NaN NaN NaN https://twitter.com/dog_rates/status/670668383... 10 10 Phineas None None None None
2105 670474236058800128 NaN NaN 2015-11-28 05:28:09 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Great teeth. Nice horn... NaN NaN NaN https://twitter.com/dog_rates/status/670474236... 10 10 None None None None None
2106 670468609693655041 NaN NaN 2015-11-28 05:05:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Edd. He's a Czechoslovakian Googolplex... NaN NaN NaN https://twitter.com/dog_rates/status/670468609... 10 10 Edd None None None None
2107 670465786746662913 NaN NaN 2015-11-28 04:54:34 +0000 <a href="http://twitter.com/download/iphone" r... Silly dog here. Wearing bunny ears. Nice long ... NaN NaN NaN https://twitter.com/dog_rates/status/670465786... 7 10 None None None None None
2108 670452855871037440 NaN NaN 2015-11-28 04:03:11 +0000 <a href="http://twitter.com/download/iphone" r... This dog can't see its haters. 11/10 https://t... NaN NaN NaN https://twitter.com/dog_rates/status/670452855... 11 10 None None None None None
2109 670449342516494336 NaN NaN 2015-11-28 03:49:14 +0000 <a href="http://twitter.com/download/iphone" r... Vibrant dog here. Fabulous tail. Only 2 legs t... NaN NaN NaN https://twitter.com/dog_rates/status/670449342... 5 10 None None None None None
2110 670444955656130560 NaN NaN 2015-11-28 03:31:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Paull. He just stubbed his toe. 10/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/670444955... 10 10 Paull None None None None
2111 670442337873600512 NaN NaN 2015-11-28 03:21:24 +0000 <a href="http://twitter.com/download/iphone" r... Meet Koda. He's large. Looks very soft. Great ... NaN NaN NaN https://twitter.com/dog_rates/status/670442337... 11 10 Koda None None None None
2112 670435821946826752 NaN NaN 2015-11-28 02:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Two unbelievably athletic dogs here. Great for... NaN NaN NaN https://twitter.com/dog_rates/status/670435821... 10 10 None None None None None
2113 670434127938719744 NaN NaN 2015-11-28 02:48:46 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hank and Sully. Hank is very proud of the... NaN NaN NaN https://twitter.com/dog_rates/status/670434127... 11 10 Hank None None None None
2114 670433248821026816 NaN NaN 2015-11-28 02:45:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Sam. He's trying to escape the inordin... NaN NaN NaN https://twitter.com/dog_rates/status/670433248... 10 10 Sam None None None None
2115 670428280563085312 NaN NaN 2015-11-28 02:25:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Willy. He's millennial af. 11/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/670428280... 11 10 Willy None None None None
2116 670427002554466305 NaN NaN 2015-11-28 02:20:27 +0000 <a href="http://twitter.com/download/iphone" r... This is a Deciduous Trimester mix named Spork.... NaN NaN NaN https://twitter.com/dog_rates/status/670427002... 9 10 a None None None None
2117 670421925039075328 NaN NaN 2015-11-28 02:00:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Herb. 12/10 https://t.co/tLRyYvCci3 NaN NaN NaN https://twitter.com/dog_rates/status/670421925... 12 10 Herb None None None None
2118 670420569653809152 NaN NaN 2015-11-28 01:54:54 +0000 <a href="http://twitter.com/download/iphone" r... This is Damon. The newest presidential candida... NaN NaN NaN https://twitter.com/dog_rates/status/670420569... 10 10 Damon None None None None
2119 670417414769758208 NaN NaN 2015-11-28 01:42:22 +0000 <a href="http://twitter.com/download/iphone" r... Sharp dog here. Introverted. Loves purple. Not... NaN NaN NaN https://twitter.com/dog_rates/status/670417414... 6 10 None None None None None
2120 670411370698022913 NaN NaN 2015-11-28 01:18:21 +0000 <a href="http://twitter.com/download/iphone" r... Meet Scooter. He's ready for his first day of ... NaN NaN NaN https://twitter.com/dog_rates/status/670411370... 12 10 Scooter None None None None
2121 670408998013820928 NaN NaN 2015-11-28 01:08:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Peanut. He was the World Table Tennis ... NaN NaN NaN https://twitter.com/dog_rates/status/670408998... 10 10 Peanut None None None None
2122 670403879788544000 NaN NaN 2015-11-28 00:48:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Nigel. He accidentally popped his ball... NaN NaN NaN https://twitter.com/dog_rates/status/670403879... 10 10 Nigel None None None None
2123 670385711116361728 NaN NaN 2015-11-27 23:36:23 +0000 <a href="http://twitter.com/download/iphone" r... Meet Larry. He's a Panoramic Benzoate. Can sho... NaN NaN NaN https://twitter.com/dog_rates/status/670385711... 8 10 Larry None None None None
2124 670374371102445568 NaN NaN 2015-11-27 22:51:19 +0000 <a href="http://twitter.com/download/iphone" r... Meet Daisy. She's rebellious. Full of teen ang... NaN NaN NaN https://twitter.com/dog_rates/status/670374371... 12 10 Daisy None None None None
2125 670361874861563904 NaN NaN 2015-11-27 22:01:40 +0000 <a href="http://twitter.com/download/iphone" r... This is a Rich Mahogany Seltzer named Cherokee... NaN NaN NaN https://twitter.com/dog_rates/status/670361874... 9 10 a None None None None
2126 670338931251150849 NaN NaN 2015-11-27 20:30:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Butters. He's not ready for Thanksgivi... NaN NaN NaN https://twitter.com/dog_rates/status/670338931... 10 10 Butters None None None None
2127 670319130621435904 NaN NaN 2015-11-27 19:11:49 +0000 <a href="http://twitter.com/download/iphone" r... AT DAWN...\nWE RIDE\n\n11/10 https://t.co/QnfO... NaN NaN NaN https://twitter.com/dog_rates/status/670319130... 11 10 None None None None None
2128 670303360680108032 NaN NaN 2015-11-27 18:09:09 +0000 <a href="http://twitter.com/download/iphone" r... This is a Speckled Cauliflower Yosemite named ... NaN NaN NaN https://twitter.com/dog_rates/status/670303360... 9 10 a None None None None
2129 670290420111441920 NaN NaN 2015-11-27 17:17:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Sandra. She's going skydiving. Nice ad... NaN NaN NaN https://twitter.com/dog_rates/status/670290420... 11 10 Sandra None None None None
2130 670093938074779648 NaN NaN 2015-11-27 04:16:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Wally. He's a Flaccid Mitochondria. Go... NaN NaN NaN https://twitter.com/dog_rates/status/670093938... 9 10 Wally None None None None
2131 670086499208155136 NaN NaN 2015-11-27 03:47:25 +0000 <a href="http://twitter.com/download/iphone" r... "Hi yes this is dog. I can't help with that s-... NaN NaN NaN https://twitter.com/dog_rates/status/670086499... 10 10 None None None None None
2132 670079681849372674 NaN NaN 2015-11-27 03:20:20 +0000 <a href="http://twitter.com/download/iphone" r... Meet Fabio. He's a wonderful pup. Can't stay a... NaN NaN NaN https://twitter.com/dog_rates/status/670079681... 10 10 Fabio None None None None
2133 670073503555706880 NaN NaN 2015-11-27 02:55:47 +0000 <a href="http://twitter.com/download/iphone" r... Meet Winston. He wants to be a power drill. Ve... NaN NaN NaN https://twitter.com/dog_rates/status/670073503... 10 10 Winston None None None None
2134 670069087419133954 NaN NaN 2015-11-27 02:38:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Randall. He's from Chernobyl. Built pl... NaN NaN NaN https://twitter.com/dog_rates/status/670069087... 5 10 Randall None None None None
2135 670061506722140161 NaN NaN 2015-11-27 02:08:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Liam. He has a particular set of skill... NaN NaN NaN https://twitter.com/dog_rates/status/670061506... 11 10 Liam None None None None
2136 670055038660800512 NaN NaN 2015-11-27 01:42:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Tommy. He's a cool dog. Hard not to st... NaN NaN NaN https://twitter.com/dog_rates/status/670055038... 3 10 Tommy None None None None
2137 670046952931721218 NaN NaN 2015-11-27 01:10:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Ben &amp; Carson. It's impossible for ... NaN NaN NaN https://twitter.com/dog_rates/status/670046952... 11 10 Ben None None None None
2138 670040295598354432 NaN NaN 2015-11-27 00:43:49 +0000 <a href="http://twitter.com/download/iphone" r... 😂😂😂 10/10 for the dog and the owner https://t.... NaN NaN NaN https://twitter.com/dog_rates/status/670040295... 10 10 None None None None None
2139 670037189829525505 NaN NaN 2015-11-27 00:31:29 +0000 <a href="http://twitter.com/download/iphone" r... Awesome dog here. Not sure where it is tho. Sp... NaN NaN NaN https://twitter.com/dog_rates/status/670037189... 5 10 None None None None None
2140 670003130994700288 NaN NaN 2015-11-26 22:16:09 +0000 <a href="http://twitter.com/download/iphone" r... This is Raphael. He is a Baskerville Conquista... NaN NaN NaN https://twitter.com/dog_rates/status/670003130... 10 10 Raphael None None None None
2141 669993076832759809 NaN NaN 2015-11-26 21:36:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Zoey. Her dreams of becoming a hippo b... NaN NaN NaN https://twitter.com/dog_rates/status/669993076... 9 10 Zoey None None None None
2142 669972011175813120 NaN NaN 2015-11-26 20:12:29 +0000 <a href="http://twitter.com/download/iphone" r... Here we see really big dog cuddling smaller do... NaN NaN NaN https://twitter.com/dog_rates/status/669972011... 10 10 None None None None None
2143 669970042633789440 NaN NaN 2015-11-26 20:04:40 +0000 <a href="http://twitter.com/download/iphone" r... This is Julio. He was one of the original Ring... NaN NaN NaN https://twitter.com/dog_rates/status/669970042... 10 10 Julio None None None None
2144 669942763794931712 NaN NaN 2015-11-26 18:16:16 +0000 <a href="http://twitter.com/download/iphone" r... This is Andru. He made his very own lacrosse s... NaN NaN NaN https://twitter.com/dog_rates/status/669942763... 11 10 Andru None None None None
2145 669926384437997569 NaN NaN 2015-11-26 17:11:11 +0000 <a href="http://twitter.com/download/iphone" r... I've never seen a dog so genuinely happy about... NaN NaN NaN https://twitter.com/dog_rates/status/669926384... 12 10 None None None None None
2146 669923323644657664 NaN NaN 2015-11-26 16:59:01 +0000 <a href="http://twitter.com/download/iphone" r... This is a spotted Lipitor Rumpelstiltskin name... NaN NaN NaN https://twitter.com/dog_rates/status/669923323... 10 10 a None None None None
2147 669753178989142016 NaN NaN 2015-11-26 05:42:55 +0000 <a href="http://twitter.com/download/iphone" r... Meet Chester. He just ate a lot and now he can... NaN NaN NaN https://twitter.com/dog_rates/status/669753178... 10 10 Chester None None None None
2148 669749430875258880 NaN NaN 2015-11-26 05:28:02 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Clarence. Clarence thought he saw... NaN NaN NaN https://twitter.com/dog_rates/status/669749430... 8 10 Clarence None None None None
2149 669684865554620416 6.693544e+17 4.196984e+09 2015-11-26 01:11:28 +0000 <a href="http://twitter.com/download/iphone" r... After countless hours of research and hundreds... NaN NaN NaN NaN 11 10 None None None None None
2150 669683899023405056 NaN NaN 2015-11-26 01:07:38 +0000 <a href="http://twitter.com/download/iphone" r... This is Kloey. Her mother was a unicorn. 10/10... NaN NaN NaN https://twitter.com/dog_rates/status/669683899... 10 10 Kloey None None None None
2151 669682095984410625 NaN NaN 2015-11-26 01:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Louie. He just pounded that bottle of win... NaN NaN NaN https://twitter.com/dog_rates/status/669682095... 9 10 Louie None None None None
2152 669680153564442624 NaN NaN 2015-11-26 00:52:45 +0000 <a href="http://twitter.com/download/iphone" r... This is Shawwn. He's a Turkish Gangrene Robitu... NaN NaN NaN https://twitter.com/dog_rates/status/669680153... 8 10 Shawwn None None None None
2153 669661792646373376 NaN NaN 2015-11-25 23:39:47 +0000 <a href="http://twitter.com/download/iphone" r... This is a brave dog. Excellent free climber. T... NaN NaN NaN https://twitter.com/dog_rates/status/669661792... 5 10 a None None None None
2154 669625907762618368 NaN NaN 2015-11-25 21:17:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Penny. She's having fun AND being safe... NaN NaN NaN https://twitter.com/dog_rates/status/669625907... 12 10 Penny None None None None
2155 669603084620980224 NaN NaN 2015-11-25 19:46:30 +0000 <a href="http://twitter.com/download/iphone" r... Very human-like. Cute overbite smile *finger t... NaN NaN NaN https://twitter.com/dog_rates/status/669603084... 10 10 None None None None None
2156 669597912108789760 NaN NaN 2015-11-25 19:25:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Skye. He is a Bretwaldian Altostratus.... NaN NaN NaN https://twitter.com/dog_rates/status/669597912... 10 10 Skye None None None None
2157 669583744538451968 NaN NaN 2015-11-25 18:29:39 +0000 <a href="http://twitter.com/download/iphone" r... Special dog here. Pretty big. Neck kinda long ... NaN NaN NaN https://twitter.com/dog_rates/status/669583744... 6 10 None None None None None
2158 669573570759163904 NaN NaN 2015-11-25 17:49:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Linda. She just looked up and saw you ... NaN NaN NaN https://twitter.com/dog_rates/status/669573570... 10 10 Linda None None None None
2159 669571471778410496 NaN NaN 2015-11-25 17:40:53 +0000 <a href="http://twitter.com/download/iphone" r... This is Keith. He's had 13 DUIs. 7/10 that's t... NaN NaN NaN https://twitter.com/dog_rates/status/669571471... 7 10 Keith None None None None
2160 669567591774625800 NaN NaN 2015-11-25 17:25:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Kollin. He's a Parakeetian Badminton from... NaN NaN NaN https://twitter.com/dog_rates/status/669567591... 9 10 Kollin None None None None
2161 669564461267722241 NaN NaN 2015-11-25 17:13:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Coriander Baton Rouge named Alfredo.... NaN NaN NaN https://twitter.com/dog_rates/status/669564461... 10 10 a None None None None
2162 669393256313184256 NaN NaN 2015-11-25 05:52:43 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ronduh. She's a Finnish Checkered Blitzkr... NaN NaN NaN https://twitter.com/dog_rates/status/669393256... 10 10 Ronduh None None None None
2163 669375718304980992 NaN NaN 2015-11-25 04:43:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Billl. He's trying to be a ghost but h... NaN NaN NaN https://twitter.com/dog_rates/status/669375718... 6 10 Billl None None None None
2164 669371483794317312 NaN NaN 2015-11-25 04:26:12 +0000 <a href="http://twitter.com/download/iphone" r... This is Oliviér. He's a Baptist Hindquarter. A... NaN NaN NaN https://twitter.com/dog_rates/status/669371483... 10 10 Oliviér None None None None
2165 669367896104181761 NaN NaN 2015-11-25 04:11:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Chip. Chip's pretending to be choked. ... NaN NaN NaN https://twitter.com/dog_rates/status/669367896... 10 10 Chip None None None None
2166 669363888236994561 NaN NaN 2015-11-25 03:56:01 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Gingivitis Pumpernickel named Z... NaN NaN NaN https://twitter.com/dog_rates/status/669363888... 10 10 None None None None None
2167 669359674819481600 NaN NaN 2015-11-25 03:39:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Saydee. She's a Rochester Ecclesiastical... NaN NaN NaN https://twitter.com/dog_rates/status/669359674... 11 10 Saydee None None None None
2168 669354382627049472 NaN NaN 2015-11-25 03:18:15 +0000 <a href="http://twitter.com/download/iphone" r... Meet Dug. Dug fucken loves peaches. 8/10 https... NaN NaN NaN https://twitter.com/dog_rates/status/669354382... 8 10 Dug None None None None
2169 669353438988365824 6.678065e+17 4.196984e+09 2015-11-25 03:14:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Tessa. She is also very pleased after ... NaN NaN NaN https://twitter.com/dog_rates/status/669353438... 10 10 Tessa None None None None
2170 669351434509529089 NaN NaN 2015-11-25 03:06:32 +0000 <a href="http://twitter.com/download/iphone" r... This is Sully. He's a Leviticus Galapagos. Ver... NaN NaN NaN https://twitter.com/dog_rates/status/669351434... 10 10 Sully None None None None
2171 669328503091937280 NaN NaN 2015-11-25 01:35:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Kirk. He just saw a bacon wrapped tenn... NaN NaN NaN https://twitter.com/dog_rates/status/669328503... 12 10 Kirk None None None None
2172 669327207240699904 NaN NaN 2015-11-25 01:30:16 +0000 <a href="http://twitter.com/download/iphone" r... Just got home from college. Dis my dog. She do... NaN NaN NaN https://twitter.com/dog_rates/status/669327207... 13 10 None None None None None
2173 669324657376567296 NaN NaN 2015-11-25 01:20:08 +0000 <a href="http://twitter.com/download/iphone" r... Meet Ralf. He's a miniature Buick DiCaprio. Ca... NaN NaN NaN https://twitter.com/dog_rates/status/669324657... 11 10 Ralf None None None None
2174 669216679721873412 NaN NaN 2015-11-24 18:11:04 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarq. He's a golden Quetzalcoatl. Cla... NaN NaN NaN https://twitter.com/dog_rates/status/669216679... 8 10 Clarq None None None None
2175 669214165781868544 NaN NaN 2015-11-24 18:01:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Jaspers. He is a northeastern Gillette... NaN NaN NaN https://twitter.com/dog_rates/status/669214165... 10 10 Jaspers None None None None
2176 669203728096960512 NaN NaN 2015-11-24 17:19:36 +0000 <a href="http://twitter.com/download/iphone" r... This is Samsom. He is sexually confused. Reall... NaN NaN NaN https://twitter.com/dog_rates/status/669203728... 9 10 Samsom None None None None
2177 669037058363662336 NaN NaN 2015-11-24 06:17:19 +0000 <a href="http://twitter.com/download/iphone" r... Here we have Pancho and Peaches. Pancho is a C... NaN NaN NaN https://twitter.com/dog_rates/status/669037058... 10 10 None None None None None
2178 669015743032369152 NaN NaN 2015-11-24 04:52:37 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog right here guys. Doesn't bark. ... NaN NaN NaN https://twitter.com/dog_rates/status/669015743... 10 10 None None None None None
2179 669006782128353280 NaN NaN 2015-11-24 04:17:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Tucker. He is 100% ready for the sport... NaN NaN NaN https://twitter.com/dog_rates/status/669006782... 12 10 Tucker None None None None
2180 669000397445533696 NaN NaN 2015-11-24 03:51:38 +0000 <a href="http://twitter.com/download/iphone" r... Meet Terrance. He's being yelled at because he... NaN NaN NaN https://twitter.com/dog_rates/status/669000397... 11 10 Terrance None None None None
2181 668994913074286592 NaN NaN 2015-11-24 03:29:51 +0000 <a href="http://twitter.com/download/iphone" r... Two gorgeous pups here. Both have cute fake ho... NaN NaN NaN https://twitter.com/dog_rates/status/668994913... 5 10 None None None None None
2182 668992363537309700 NaN NaN 2015-11-24 03:19:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Harrison. He braves the snow like a ch... NaN NaN NaN https://twitter.com/dog_rates/status/668992363... 8 10 Harrison None None None None
2183 668989615043424256 NaN NaN 2015-11-24 03:08:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Bernie. He's taking his Halloween cost... NaN NaN NaN https://twitter.com/dog_rates/status/668989615... 3 10 Bernie None None None None
2184 668988183816871936 NaN NaN 2015-11-24 03:03:06 +0000 <a href="http://twitter.com/download/iphone" r... Honor to rate this dog. Lots of fur on him. Tw... NaN NaN NaN https://twitter.com/dog_rates/status/668988183... 7 10 None None None None None
2185 668986018524233728 NaN NaN 2015-11-24 02:54:30 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruby. She's a Bimmington Fettuccini. O... NaN NaN NaN https://twitter.com/dog_rates/status/668986018... 9 10 Ruby None None None None
2186 668981893510119424 NaN NaN 2015-11-24 02:38:07 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Oddly shaped tail. Long pink ... NaN NaN NaN https://twitter.com/dog_rates/status/668981893... 4 10 None None None None None
2187 668979806671884288 NaN NaN 2015-11-24 02:29:49 +0000 <a href="http://twitter.com/download/iphone" r... This is Chaz. He's an X Games half pipe supers... NaN NaN NaN https://twitter.com/dog_rates/status/668979806... 12 10 Chaz None None None None
2188 668975677807423489 NaN NaN 2015-11-24 02:13:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeremy. He hasn't grown into his skin ... NaN NaN NaN https://twitter.com/dog_rates/status/668975677... 11 10 Jeremy None None None None
2189 668967877119254528 6.689207e+17 2.143566e+07 2015-11-24 01:42:25 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 good shit Bubka\n@wane15 NaN NaN NaN NaN 12 10 None None None None None
2190 668960084974809088 NaN NaN 2015-11-24 01:11:27 +0000 <a href="http://twitter.com/download/iphone" r... Meet Jaycob. He got scared of the vacuum. Hide... NaN NaN NaN https://twitter.com/dog_rates/status/668960084... 10 10 Jaycob None None None None
2191 668955713004314625 NaN NaN 2015-11-24 00:54:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Slovakian Helter Skelter Feta named ... NaN NaN NaN https://twitter.com/dog_rates/status/668955713... 10 10 a None None None None
2192 668932921458302977 NaN NaN 2015-11-23 23:23:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Herald. He likes to swing. Subtle tong... NaN NaN NaN https://twitter.com/dog_rates/status/668932921... 9 10 Herald None None None None
2193 668902994700836864 NaN NaN 2015-11-23 21:24:36 +0000 <a href="http://twitter.com/download/iphone" r... Meet Lambeau. He's a Whistling Haiku from the ... NaN NaN NaN https://twitter.com/dog_rates/status/668902994... 11 10 Lambeau None None None None
2194 668892474547511297 NaN NaN 2015-11-23 20:42:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Ruffles. He is an Albanian Shoop Da Wh... NaN NaN NaN https://twitter.com/dog_rates/status/668892474... 11 10 Ruffles None None None None
2195 668872652652679168 NaN NaN 2015-11-23 19:24:02 +0000 <a href="http://twitter.com/download/iphone" r... This is Amélie. She is a confident white colle... NaN NaN NaN https://twitter.com/dog_rates/status/668872652... 11 10 Amélie None None None None
2196 668852170888998912 NaN NaN 2015-11-23 18:02:38 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bobb. Bobb is a Golden High Fescu... NaN NaN NaN https://twitter.com/dog_rates/status/668852170... 11 10 Bobb None None None None
2197 668826086256599040 NaN NaN 2015-11-23 16:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Banditt. He is a brown LaBeouf retriev... NaN NaN NaN https://twitter.com/dog_rates/status/668826086... 10 10 Banditt None None None None
2198 668815180734689280 NaN NaN 2015-11-23 15:35:39 +0000 <a href="http://twitter.com/download/iphone" r... This is a wild Toblerone from Papua New Guinea... NaN NaN NaN https://twitter.com/dog_rates/status/668815180... 7 10 a None None None None
2199 668779399630725120 NaN NaN 2015-11-23 13:13:28 +0000 <a href="http://twitter.com/download/iphone" r... This is Kevon. He is not physically or mentall... NaN NaN NaN https://twitter.com/dog_rates/status/668779399... 10 10 Kevon None None None None
2200 668655139528511488 NaN NaN 2015-11-23 04:59:42 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Winifred. He is a Papyrus Hydrang... NaN NaN NaN https://twitter.com/dog_rates/status/668655139... 11 10 Winifred None None None None
2201 668645506898350081 NaN NaN 2015-11-23 04:21:26 +0000 <a href="http://twitter.com/download/iphone" r... Incredibly rare dog here. Good at bipedalism. ... NaN NaN NaN https://twitter.com/dog_rates/status/668645506... 11 10 None None None None None
2202 668643542311546881 NaN NaN 2015-11-23 04:13:37 +0000 <a href="http://twitter.com/download/iphone" r... Fascinating dog here. Loves beach. Oddly long ... NaN NaN NaN https://twitter.com/dog_rates/status/668643542... 3 10 None None None None None
2203 668641109086707712 NaN NaN 2015-11-23 04:03:57 +0000 <a href="http://twitter.com/download/iphone" r... Meet Hanz. He heard some thunder. 10/10 https:... NaN NaN NaN https://twitter.com/dog_rates/status/668641109... 10 10 Hanz None None None None
2204 668636665813057536 NaN NaN 2015-11-23 03:46:18 +0000 <a href="http://twitter.com/download/iphone" r... This is an Irish Rigatoni terrier named Berta.... NaN NaN NaN https://twitter.com/dog_rates/status/668636665... 10 10 an None None None None
2205 668633411083464705 NaN NaN 2015-11-23 03:33:22 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. He likes bagels. 10/10 https:... NaN NaN NaN https://twitter.com/dog_rates/status/668633411... 10 10 Churlie None None None None
2206 668631377374486528 NaN NaN 2015-11-23 03:25:17 +0000 <a href="http://twitter.com/download/iphone" r... Meet Zeek. He is a grey Cumulonimbus. Zeek is ... NaN NaN NaN https://twitter.com/dog_rates/status/668631377... 5 10 Zeek None None None None
2207 668627278264475648 NaN NaN 2015-11-23 03:09:00 +0000 <a href="http://twitter.com/download/iphone" r... This is Timofy. He's a pilot for Southwest. It... NaN NaN NaN https://twitter.com/dog_rates/status/668627278... 9 10 Timofy None None None None
2208 668625577880875008 NaN NaN 2015-11-23 03:02:14 +0000 <a href="http://twitter.com/download/iphone" r... This is Maks. Maks just noticed something wasn... NaN NaN NaN https://twitter.com/dog_rates/status/668625577... 10 10 Maks None None None None
2209 668623201287675904 NaN NaN 2015-11-23 02:52:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Jomathan. He is not thrilled about the... NaN NaN NaN https://twitter.com/dog_rates/status/668623201... 10 10 Jomathan None None None None
2210 668620235289837568 NaN NaN 2015-11-23 02:41:01 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kallie. There was a tornado in th... NaN NaN NaN https://twitter.com/dog_rates/status/668620235... 10 10 Kallie None None None None
2211 668614819948453888 NaN NaN 2015-11-23 02:19:29 +0000 <a href="http://twitter.com/download/iphone" r... Here is a horned dog. Much grace. Can jump ove... NaN NaN NaN https://twitter.com/dog_rates/status/668614819... 7 10 a None None None None
2212 668587383441514497 NaN NaN 2015-11-23 00:30:28 +0000 <a href="http://vine.co" rel="nofollow">Vine -... Never forget this vine. You will not stop watc... NaN NaN NaN https://vine.co/v/ea0OwvPTx9l 13 10 the None None None None
2213 668567822092664832 NaN NaN 2015-11-22 23:12:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Marvin. He can tie a bow tie better th... NaN NaN NaN https://twitter.com/dog_rates/status/668567822... 11 10 Marvin None None None None
2214 668544745690562560 NaN NaN 2015-11-22 21:41:02 +0000 <a href="http://twitter.com/download/iphone" r... It is an honor to rate this pup. He is a Snork... NaN NaN NaN https://twitter.com/dog_rates/status/668544745... 10 10 None None None None None
2215 668542336805281792 NaN NaN 2015-11-22 21:31:28 +0000 <a href="http://twitter.com/download/iphone" r... There's a lot going on here but in my honest o... NaN NaN NaN https://twitter.com/dog_rates/status/668542336... 10 10 None None None None None
2216 668537837512433665 NaN NaN 2015-11-22 21:13:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Spark. He's nervous. Other dog hasn't ... NaN NaN NaN https://twitter.com/dog_rates/status/668537837... 8 10 Spark None None None None
2217 668528771708952576 NaN NaN 2015-11-22 20:37:34 +0000 <a href="http://twitter.com/download/iphone" r... This is Gòrdón. He enjoys his razberrita by po... NaN NaN NaN https://twitter.com/dog_rates/status/668528771... 12 10 Gòrdón None None None None
2218 668507509523615744 NaN NaN 2015-11-22 19:13:05 +0000 <a href="http://twitter.com/download/iphone" r... This is a Birmingham Quagmire named Chuk. Love... NaN NaN NaN https://twitter.com/dog_rates/status/668507509... 10 10 a None None None None
2219 668496999348633600 NaN NaN 2015-11-22 18:31:19 +0000 <a href="http://twitter.com/download/iphone" r... This is Jo. Jo is a Swedish Queso. Tongue bigg... NaN NaN NaN https://twitter.com/dog_rates/status/668496999... 8 10 Jo None None None None
2220 668484198282485761 NaN NaN 2015-11-22 17:40:27 +0000 <a href="http://twitter.com/download/iphone" r... Good teamwork between these dogs. One is on lo... NaN NaN NaN https://twitter.com/dog_rates/status/668484198... 9 10 None None None None None
2221 668480044826800133 NaN NaN 2015-11-22 17:23:57 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to DayZ. She is definitely stuck on ... NaN NaN NaN https://twitter.com/dog_rates/status/668480044... 11 10 DayZ None None None None
2222 668466899341221888 NaN NaN 2015-11-22 16:31:42 +0000 <a href="http://twitter.com/download/iphone" r... Here is a mother dog caring for her pups. Snaz... NaN NaN NaN https://twitter.com/dog_rates/status/668466899... 4 10 a None None None None
2223 668297328638447616 NaN NaN 2015-11-22 05:17:54 +0000 <a href="http://twitter.com/download/iphone" r... 2 rare dogs. They waddle (v inefficient). Some... NaN NaN NaN https://twitter.com/dog_rates/status/668297328... 9 10 None None None None None
2224 668291999406125056 NaN NaN 2015-11-22 04:56:43 +0000 <a href="http://twitter.com/download/iphone" r... I can't do better than he did. 10/10 https://t... NaN NaN NaN https://twitter.com/dog_rates/status/668291999... 10 10 None None None None None
2225 668286279830867968 NaN NaN 2015-11-22 04:33:59 +0000 <a href="http://twitter.com/download/iphone" r... Meet Rusty. Rusty's dreaming of a world where ... NaN NaN NaN https://twitter.com/dog_rates/status/668286279... 11 10 Rusty None None None None
2226 668274247790391296 NaN NaN 2015-11-22 03:46:11 +0000 <a href="http://twitter.com/download/iphone" r... Meet Sophie. Her son just got in the car to le... NaN NaN NaN https://twitter.com/dog_rates/status/668274247... 10 10 Sophie None None None None
2227 668268907921326080 NaN NaN 2015-11-22 03:24:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Azerbaijani Buttermilk named G... NaN NaN NaN https://twitter.com/dog_rates/status/668268907... 10 10 None None None None None
2228 668256321989451776 NaN NaN 2015-11-22 02:34:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Jareld. Jareld rules these waters. Lad... NaN NaN NaN https://twitter.com/dog_rates/status/668256321... 13 10 Jareld None None None None
2229 668248472370458624 NaN NaN 2015-11-22 02:03:45 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Bisquick. He is a Brown Douglass ... NaN NaN NaN https://twitter.com/dog_rates/status/668248472... 8 10 Bisquick None None None None
2230 668237644992782336 NaN NaN 2015-11-22 01:20:44 +0000 <a href="http://twitter.com/download/iphone" r... This is Torque. He served his nickel. Better n... NaN NaN NaN https://twitter.com/dog_rates/status/668237644... 10 10 Torque None None None None
2231 668226093875376128 NaN NaN 2015-11-22 00:34:50 +0000 <a href="http://twitter.com/download/iphone" r... Sneaky dog here. Tuba player has no clue. 10/1... NaN NaN NaN https://twitter.com/dog_rates/status/668226093... 10 10 None None None None None
2232 668221241640230912 NaN NaN 2015-11-22 00:15:33 +0000 <a href="http://twitter.com/download/iphone" r... These two dogs are Bo &amp; Smittens. Smittens... NaN NaN NaN https://twitter.com/dog_rates/status/668221241... 10 10 None None None None None
2233 668204964695683073 NaN NaN 2015-11-21 23:10:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Ron. Ron's currently experiencing a br... NaN NaN NaN https://twitter.com/dog_rates/status/668204964... 8 10 Ron None None None None
2234 668190681446379520 NaN NaN 2015-11-21 22:14:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Skittles. I would kidnap Skittles. Pin... NaN NaN NaN https://twitter.com/dog_rates/status/668190681... 12 10 Skittles None None None None
2235 668171859951755264 NaN NaN 2015-11-21 20:59:20 +0000 <a href="http://twitter.com/download/iphone" r... This is a Trans Siberian Kellogg named Alfonso... NaN NaN NaN https://twitter.com/dog_rates/status/668171859... 7 10 a None None None None
2236 668154635664932864 NaN NaN 2015-11-21 19:50:53 +0000 <a href="http://twitter.com/download/iphone" r... Fun dogs here. Top one clearly an athlete. Bot... NaN NaN NaN https://twitter.com/dog_rates/status/668154635... 9 10 None None None None None
2237 668142349051129856 NaN NaN 2015-11-21 19:02:04 +0000 <a href="http://twitter.com/download/iphone" r... This lil pup is Oliver. Hops around. Has wings... NaN NaN NaN https://twitter.com/dog_rates/status/668142349... 2 10 None None None None None
2238 668113020489474048 NaN NaN 2015-11-21 17:05:31 +0000 <a href="http://twitter.com/download/iphone" r... This is Alfie. He's that one hypocritical gym ... NaN NaN NaN https://twitter.com/dog_rates/status/668113020... 6 10 Alfie None None None None
2239 667937095915278337 NaN NaN 2015-11-21 05:26:27 +0000 <a href="http://twitter.com/download/iphone" r... This dog resembles a baked potato. Bed looks u... NaN NaN NaN https://twitter.com/dog_rates/status/667937095... 3 10 None None None None None
2240 667924896115245057 NaN NaN 2015-11-21 04:37:59 +0000 <a href="http://twitter.com/download/iphone" r... This is Jiminy. He has always wanted to be a c... NaN NaN NaN https://twitter.com/dog_rates/status/667924896... 9 10 Jiminy None None None None
2241 667915453470232577 NaN NaN 2015-11-21 04:00:28 +0000 <a href="http://twitter.com/download/iphone" r... Meet Otis. He is a Peruvian Quartzite. Pic spo... NaN NaN NaN https://twitter.com/dog_rates/status/667915453... 10 10 Otis None None None None
2242 667911425562669056 NaN NaN 2015-11-21 03:44:27 +0000 <a href="http://twitter.com/download/iphone" r... Wow. Armored dog here. Ready for battle. Face ... NaN NaN NaN https://twitter.com/dog_rates/status/667911425... 5 10 None None None None None
2243 667902449697558528 NaN NaN 2015-11-21 03:08:47 +0000 <a href="http://twitter.com/download/iphone" r... This is Cleopatricia. She is a northern Paperb... NaN NaN NaN https://twitter.com/dog_rates/status/667902449... 9 10 Cleopatricia None None None None
2244 667886921285246976 NaN NaN 2015-11-21 02:07:05 +0000 <a href="http://twitter.com/download/iphone" r... This is Erik. He's fucken massive. But also ki... NaN NaN NaN https://twitter.com/dog_rates/status/667886921... 11 10 Erik None None None None
2245 667885044254572545 NaN NaN 2015-11-21 01:59:37 +0000 <a href="http://twitter.com/download/iphone" r... Meet Stu. Stu has stacks on stacks and an eye ... NaN NaN NaN https://twitter.com/dog_rates/status/667885044... 10 10 Stu None None None None
2246 667878741721415682 NaN NaN 2015-11-21 01:34:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Tedrick. He lives on the edge. Needs s... NaN NaN NaN https://twitter.com/dog_rates/status/667878741... 2 10 Tedrick None None None None
2247 667873844930215936 NaN NaN 2015-11-21 01:15:07 +0000 <a href="http://twitter.com/download/iphone" r... Neat dog. Lots of spikes. Always in push-up po... NaN NaN NaN https://twitter.com/dog_rates/status/667873844... 10 10 None None None None None
2248 667866724293877760 NaN NaN 2015-11-21 00:46:50 +0000 <a href="http://twitter.com/download/iphone" r... This is Shaggy. He knows exactly how to solve ... NaN NaN NaN https://twitter.com/dog_rates/status/667866724... 10 10 Shaggy None None None None
2249 667861340749471744 NaN NaN 2015-11-21 00:25:26 +0000 <a href="http://twitter.com/download/iphone" r... This is a Shotokon Macadamia mix named Cheryl.... NaN NaN NaN https://twitter.com/dog_rates/status/667861340... 9 10 a None None None None
2250 667832474953625600 NaN NaN 2015-11-20 22:30:44 +0000 <a href="http://twitter.com/download/iphone" r... THE EYES 12/10\n\nI'm sorry. These are suppose... NaN NaN NaN https://twitter.com/dog_rates/status/667832474... 12 10 None None None None None
2251 667806454573760512 NaN NaN 2015-11-20 20:47:20 +0000 <a href="http://twitter.com/download/iphone" r... This is Filup. He is overcome with joy after f... NaN NaN NaN https://twitter.com/dog_rates/status/667806454... 10 10 Filup None None None None
2252 667801013445750784 NaN NaN 2015-11-20 20:25:43 +0000 <a href="http://twitter.com/download/iphone" r... OMIGOD 12/10 https://t.co/SVMF4Frf1w NaN NaN NaN https://twitter.com/dog_rates/status/667801013... 12 10 None None None None None
2253 667793409583771648 NaN NaN 2015-11-20 19:55:30 +0000 <a href="http://twitter.com/download/iphone" r... Dogs only please. Small cows and other non can... NaN NaN NaN https://twitter.com/dog_rates/status/667793409... 8 10 None None None None None
2254 667782464991965184 NaN NaN 2015-11-20 19:12:01 +0000 <a href="http://twitter.com/download/iphone" r... Super rare dog. Endangered (?). Thinks it's fu... NaN NaN NaN https://twitter.com/dog_rates/status/667782464... 9 10 None None None None None
2255 667773195014021121 NaN NaN 2015-11-20 18:35:10 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a rare Hungarian Pinot named Jessiga. ... NaN NaN NaN https://twitter.com/dog_rates/status/667773195... 8 10 a None None None None
2256 667766675769573376 NaN NaN 2015-11-20 18:09:16 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Calvin. He is a Luxembourgian Mayo. Ha... NaN NaN NaN https://twitter.com/dog_rates/status/667766675... 9 10 Calvin None None None None
2257 667728196545200128 NaN NaN 2015-11-20 15:36:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Olive. He comes to spot by tree to remini... NaN NaN NaN https://twitter.com/dog_rates/status/667728196... 11 10 Olive None None None None
2258 667724302356258817 NaN NaN 2015-11-20 15:20:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... What a dog to start the day with. Very calm. L... NaN NaN NaN https://twitter.com/dog_rates/status/667724302... 7 10 None None None None None
2259 667550904950915073 NaN NaN 2015-11-20 03:51:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Exceptional talent. Origi... 6.675487e+17 4.296832e+09 2015-11-20 03:43:06 +0000 https://twitter.com/dogratingrating/status/667... 12 10 None None None None None
2260 667550882905632768 NaN NaN 2015-11-20 03:51:47 +0000 <a href="http://twitter.com" rel="nofollow">Tw... RT @dogratingrating: Unoriginal idea. Blatant ... 6.675484e+17 4.296832e+09 2015-11-20 03:41:59 +0000 https://twitter.com/dogratingrating/status/667... 5 10 None None None None None
2261 667549055577362432 NaN NaN 2015-11-20 03:44:31 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Never seen dog like this. Breathes heavy. Tilt... NaN NaN NaN https://twitter.com/dog_rates/status/667549055... 1 10 None None None None None
2262 667546741521195010 NaN NaN 2015-11-20 03:35:20 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Here is George. George took a selfie of his ne... NaN NaN NaN https://twitter.com/dog_rates/status/667546741... 9 10 George None None None None
2263 667544320556335104 NaN NaN 2015-11-20 03:25:43 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Kial. Kial is either wearing a cape, w... NaN NaN NaN https://twitter.com/dog_rates/status/667544320... 10 10 Kial None None None None
2264 667538891197542400 NaN NaN 2015-11-20 03:04:08 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a southwest Coriander named Klint. Hat... NaN NaN NaN https://twitter.com/dog_rates/status/667538891... 9 10 a None None None None
2265 667534815156183040 NaN NaN 2015-11-20 02:47:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Frank (pronounced "Fronq"). Too many b... NaN NaN NaN https://twitter.com/dog_rates/status/667534815... 8 10 Frank None None None None
2266 667530908589760512 NaN NaN 2015-11-20 02:32:25 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Naphaniel. He doesn't necessarily enjoy h... NaN NaN NaN https://twitter.com/dog_rates/status/667530908... 10 10 Naphaniel None None None None
2267 667524857454854144 NaN NaN 2015-11-20 02:08:22 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Another topnotch dog. His name is Big Jumpy Ra... NaN NaN NaN https://twitter.com/dog_rates/status/667524857... 12 10 None None None None None
2268 667517642048163840 NaN NaN 2015-11-20 01:39:42 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Dook &amp; Milo. Dook is struggling to... NaN NaN NaN https://twitter.com/dog_rates/status/667517642... 8 10 Dook None None None None
2269 667509364010450944 NaN NaN 2015-11-20 01:06:48 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This a Norwegian Pewterschmidt named Tickles. ... NaN NaN NaN https://twitter.com/dog_rates/status/667509364... 12 10 None None None None None
2270 667502640335572993 NaN NaN 2015-11-20 00:40:05 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Say hello to Hall and Oates. Oates is winking ... NaN NaN NaN https://twitter.com/dog_rates/status/667502640... 11 10 Hall None None None None
2271 667495797102141441 NaN NaN 2015-11-20 00:12:54 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Philippe from Soviet Russia. Commandin... NaN NaN NaN https://twitter.com/dog_rates/status/667495797... 9 10 Philippe None None None None
2272 667491009379606528 NaN NaN 2015-11-19 23:53:52 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Two dogs in this one. Both are rare Jujitsu Py... NaN NaN NaN https://twitter.com/dog_rates/status/667491009... 7 10 None None None None None
2273 667470559035432960 NaN NaN 2015-11-19 22:32:36 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is a northern Wahoo named Kohl. He runs t... NaN NaN NaN https://twitter.com/dog_rates/status/667470559... 11 10 a None None None None
2274 667455448082227200 NaN NaN 2015-11-19 21:32:34 +0000 <a href="http://twitter.com" rel="nofollow">Tw... This is Reese and Twips. Reese protects Twips.... NaN NaN NaN https://twitter.com/dog_rates/status/667455448... 7 10 Reese None None None None
2275 667453023279554560 NaN NaN 2015-11-19 21:22:56 +0000 <a href="http://twitter.com" rel="nofollow">Tw... Meet Cupcake. I would do unspeakable things fo... NaN NaN NaN https://twitter.com/dog_rates/status/667453023... 11 10 Cupcake None None None None
2276 667443425659232256 NaN NaN 2015-11-19 20:44:47 +0000 <a href="http://twitter.com/download/iphone" r... Exotic dog here. Long neck. Weird paws. Obsess... NaN NaN NaN https://twitter.com/dog_rates/status/667443425... 6 10 None None None None None
2277 667437278097252352 NaN NaN 2015-11-19 20:20:22 +0000 <a href="http://twitter.com/download/iphone" r... Never seen this breed before. Very pointy pup.... NaN NaN NaN https://twitter.com/dog_rates/status/667437278... 10 10 None None None None None
2278 667435689202614272 NaN NaN 2015-11-19 20:14:03 +0000 <a href="http://twitter.com/download/iphone" r... Ermergerd 12/10 https://t.co/PQni2sjPsm NaN NaN NaN https://twitter.com/dog_rates/status/667435689... 12 10 None None None None None
2279 667405339315146752 NaN NaN 2015-11-19 18:13:27 +0000 <a href="http://twitter.com/download/iphone" r... This is Biden. Biden just tripped... 7/10 http... NaN NaN NaN https://twitter.com/dog_rates/status/667405339... 7 10 Biden None None None None
2280 667393430834667520 NaN NaN 2015-11-19 17:26:08 +0000 <a href="http://twitter.com/download/iphone" r... This is Fwed. He is a Canadian Asian Taylormad... NaN NaN NaN https://twitter.com/dog_rates/status/667393430... 8 10 Fwed None None None None
2281 667369227918143488 NaN NaN 2015-11-19 15:49:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a neat pup. Very white. Cool shad... NaN NaN NaN https://twitter.com/dog_rates/status/667369227... 10 10 None None None None None
2282 667211855547486208 NaN NaN 2015-11-19 05:24:37 +0000 <a href="http://twitter.com/download/iphone" r... This is Genevieve. She is a golden retriever c... NaN NaN NaN https://twitter.com/dog_rates/status/667211855... 9 10 Genevieve None None None None
2283 667200525029539841 NaN NaN 2015-11-19 04:39:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Joshwa. He is a fuckboy supreme. He cl... NaN NaN NaN https://twitter.com/dog_rates/status/667200525... 11 10 Joshwa None None None None
2284 667192066997374976 NaN NaN 2015-11-19 04:05:59 +0000 <a href="http://twitter.com/download/iphone" r... *takes several long deep breaths* omg omg oMG ... NaN NaN NaN https://twitter.com/dog_rates/status/667192066... 12 10 None None None None None
2285 667188689915760640 NaN NaN 2015-11-19 03:52:34 +0000 <a href="http://twitter.com/download/iphone" r... Quite an advanced dog here. Impressively dress... NaN NaN NaN https://twitter.com/dog_rates/status/667188689... 10 10 None None None None None
2286 667182792070062081 NaN NaN 2015-11-19 03:29:07 +0000 <a href="http://twitter.com/download/iphone" r... This is Timison. He just told an awful joke bu... NaN NaN NaN https://twitter.com/dog_rates/status/667182792... 10 10 Timison None None None None
2287 667177989038297088 NaN NaN 2015-11-19 03:10:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a Dasani Kingfisher from Maine. His na... NaN NaN NaN https://twitter.com/dog_rates/status/667177989... 8 10 a None None None None
2288 667176164155375616 NaN NaN 2015-11-19 03:02:47 +0000 <a href="http://twitter.com/download/iphone" r... These are strange dogs. All have toupees. Long... NaN NaN NaN https://twitter.com/dog_rates/status/667176164... 4 10 None None None None None
2289 667174963120574464 NaN NaN 2015-11-19 02:58:01 +0000 <a href="http://twitter.com/download/iphone" r... This is Clarence. His face says he doesn't wan... NaN NaN NaN https://twitter.com/dog_rates/status/667174963... 9 10 Clarence None None None None
2290 667171260800061440 NaN NaN 2015-11-19 02:43:18 +0000 <a href="http://twitter.com/download/iphone" r... Say hello to Kenneth. He likes Reese's Puffs. ... NaN NaN NaN https://twitter.com/dog_rates/status/667171260... 10 10 Kenneth None None None None
2291 667165590075940865 NaN NaN 2015-11-19 02:20:46 +0000 <a href="http://twitter.com/download/iphone" r... This is Churlie. AKA Fetty Woof. Lost eye savi... NaN NaN NaN https://twitter.com/dog_rates/status/667165590... 10 10 Churlie None None None None
2292 667160273090932737 NaN NaN 2015-11-19 01:59:39 +0000 <a href="http://twitter.com/download/iphone" r... This is Bradlay. He is a Ronaldinho Matsuyama ... NaN NaN NaN https://twitter.com/dog_rates/status/667160273... 11 10 Bradlay None None None None
2293 667152164079423490 NaN NaN 2015-11-19 01:27:25 +0000 <a href="http://twitter.com/download/iphone" r... This is Pipsy. He is a fluffball. Enjoys trave... NaN NaN NaN https://twitter.com/dog_rates/status/667152164... 12 10 Pipsy None None None None
2294 667138269671505920 NaN NaN 2015-11-19 00:32:12 +0000 <a href="http://twitter.com/download/iphone" r... Extremely intelligent dog here. Has learned to... NaN NaN NaN https://twitter.com/dog_rates/status/667138269... 10 10 None None None None None
2295 667119796878725120 NaN NaN 2015-11-18 23:18:48 +0000 <a href="http://twitter.com/download/iphone" r... This is Gabe. He is a southern Baklava. Gabe h... NaN NaN NaN https://twitter.com/dog_rates/status/667119796... 10 10 Gabe None None None None
2296 667090893657276420 NaN NaN 2015-11-18 21:23:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Clybe. He is an Anemone Valdez. One ea... NaN NaN NaN https://twitter.com/dog_rates/status/667090893... 7 10 Clybe None None None None
2297 667073648344346624 NaN NaN 2015-11-18 20:15:26 +0000 <a href="http://twitter.com/download/iphone" r... Here is Dave. He is actually just a skinny leg... NaN NaN NaN https://twitter.com/dog_rates/status/667073648... 10 10 Dave None None None None
2298 667070482143944705 6.670655e+17 4.196984e+09 2015-11-18 20:02:51 +0000 <a href="http://twitter.com/download/iphone" r... After much debate this dog is being upgraded t... NaN NaN NaN NaN 10 10 None None None None None
2299 667065535570550784 NaN NaN 2015-11-18 19:43:11 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Hufflepuff. Loves vest. Eyes wi... NaN NaN NaN https://twitter.com/dog_rates/status/667065535... 8 10 None None None None None
2300 667062181243039745 NaN NaN 2015-11-18 19:29:52 +0000 <a href="http://twitter.com/download/iphone" r... This is Keet. He is a Floridian Amukamara. Abs... NaN NaN NaN https://twitter.com/dog_rates/status/667062181... 10 10 Keet None None None None
2301 667044094246576128 NaN NaN 2015-11-18 18:17:59 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 gimme now https://t.co/QZAnwgnOMB NaN NaN NaN https://twitter.com/dog_rates/status/667044094... 12 10 None None None None None
2302 667012601033924608 NaN NaN 2015-11-18 16:12:51 +0000 <a href="http://twitter.com/download/iphone" r... This is Klevin. He laughs a lot. Very cool dog... NaN NaN NaN https://twitter.com/dog_rates/status/667012601... 9 10 Klevin None None None None
2303 666996132027977728 NaN NaN 2015-11-18 15:07:24 +0000 <a href="http://twitter.com/download/iphone" r... This is Carll. He wants to be a donkey. But al... NaN NaN NaN https://twitter.com/dog_rates/status/666996132... 10 10 Carll None None None None
2304 666983947667116034 NaN NaN 2015-11-18 14:18:59 +0000 <a href="http://twitter.com/download/iphone" r... This is a curly Ticonderoga named Pepe. No fee... NaN NaN NaN https://twitter.com/dog_rates/status/666983947... 11 10 a None None None None
2305 666837028449972224 NaN NaN 2015-11-18 04:35:11 +0000 <a href="http://twitter.com/download/iphone" r... My goodness. Very rare dog here. Large. Tail d... NaN NaN NaN https://twitter.com/dog_rates/status/666837028... 3 10 None None None None None
2306 666835007768551424 NaN NaN 2015-11-18 04:27:09 +0000 <a href="http://twitter.com/download/iphone" r... These are Peruvian Feldspars. Their names are ... NaN NaN NaN https://twitter.com/dog_rates/status/666835007... 10 10 None None None None None
2307 666826780179869698 NaN NaN 2015-11-18 03:54:28 +0000 <a href="http://twitter.com/download/iphone" r... 12/10 simply brilliant pup https://t.co/V6ZzG4... NaN NaN NaN https://twitter.com/dog_rates/status/666826780... 12 10 None None None None None
2308 666817836334096384 NaN NaN 2015-11-18 03:18:55 +0000 <a href="http://twitter.com/download/iphone" r... This is Jeph. He is a German Boston Shuttlecoc... NaN NaN NaN https://twitter.com/dog_rates/status/666817836... 9 10 Jeph None None None None
2309 666804364988780544 NaN NaN 2015-11-18 02:25:23 +0000 <a href="http://twitter.com/download/iphone" r... This is Jockson. He is a Pinnacle Sagittarius.... NaN NaN NaN https://twitter.com/dog_rates/status/666804364... 8 10 Jockson None None None None
2310 666786068205871104 NaN NaN 2015-11-18 01:12:41 +0000 <a href="http://twitter.com/download/iphone" r... Unfamiliar with this breed. Ears pointy af. Wo... NaN NaN NaN https://twitter.com/dog_rates/status/666786068... 2 10 None None None None None
2311 666781792255496192 NaN NaN 2015-11-18 00:55:42 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Bacardi named Octaviath. Ca... NaN NaN NaN https://twitter.com/dog_rates/status/666781792... 10 10 a None None None None
2312 666776908487630848 NaN NaN 2015-11-18 00:36:17 +0000 <a href="http://twitter.com/download/iphone" r... This is Josep. He is a Rye Manganese mix. Can ... NaN NaN NaN https://twitter.com/dog_rates/status/666776908... 5 10 Josep None None None None
2313 666739327293083650 NaN NaN 2015-11-17 22:06:57 +0000 <a href="http://twitter.com/download/iphone" r... This is Lugan. He is a Bohemian Rhapsody. Very... NaN NaN NaN https://twitter.com/dog_rates/status/666739327... 10 10 Lugan None None None None
2314 666701168228331520 NaN NaN 2015-11-17 19:35:19 +0000 <a href="http://twitter.com/download/iphone" r... This is a golden Buckminsterfullerene named Jo... NaN NaN NaN https://twitter.com/dog_rates/status/666701168... 8 10 a None None None None
2315 666691418707132416 NaN NaN 2015-11-17 18:56:35 +0000 <a href="http://twitter.com/download/iphone" r... This is Christoper. He is a spotted Penne. Can... NaN NaN NaN https://twitter.com/dog_rates/status/666691418... 8 10 Christoper None None None None
2316 666649482315059201 NaN NaN 2015-11-17 16:09:56 +0000 <a href="http://twitter.com/download/iphone" r... Cool dog. Enjoys couch. Low monotone bark. Ver... NaN NaN NaN https://twitter.com/dog_rates/status/666649482... 4 10 None None None None None
2317 666644823164719104 NaN NaN 2015-11-17 15:51:26 +0000 <a href="http://twitter.com/download/iphone" r... This is Jimothy. He is a Botwanian Gouda. Can ... NaN NaN NaN https://twitter.com/dog_rates/status/666644823... 9 10 Jimothy None None None None
2318 666454714377183233 NaN NaN 2015-11-17 03:16:00 +0000 <a href="http://twitter.com/download/iphone" r... I'll name the dogs from now on. This is Kreggo... NaN NaN NaN https://twitter.com/dog_rates/status/666454714... 10 10 Kreggory None None None None
2319 666447344410484738 NaN NaN 2015-11-17 02:46:43 +0000 <a href="http://twitter.com/download/iphone" r... This is Scout. She is a black Downton Abbey. I... NaN NaN NaN https://twitter.com/dog_rates/status/666447344... 9 10 Scout None None None None
2320 666437273139982337 NaN NaN 2015-11-17 02:06:42 +0000 <a href="http://twitter.com/download/iphone" r... Here we see a lone northeastern Cumberbatch. H... NaN NaN NaN https://twitter.com/dog_rates/status/666437273... 7 10 None None None None None
2321 666435652385423360 NaN NaN 2015-11-17 02:00:15 +0000 <a href="http://twitter.com/download/iphone" r... "Can you behave? You're ruining my wedding day... NaN NaN NaN https://twitter.com/dog_rates/status/666435652... 10 10 None None None None None
2322 666430724426358785 NaN NaN 2015-11-17 01:40:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh boy what a pup! Sunglasses take this one to... NaN NaN NaN https://twitter.com/dog_rates/status/666430724... 6 10 None None None None None
2323 666428276349472768 NaN NaN 2015-11-17 01:30:57 +0000 <a href="http://twitter.com/download/iphone" r... Here we have an Austrian Pulitzer. Collectors ... NaN NaN NaN https://twitter.com/dog_rates/status/666428276... 7 10 None None None None None
2324 666421158376562688 NaN NaN 2015-11-17 01:02:40 +0000 <a href="http://twitter.com/download/iphone" r... *internally screaming* 12/10 https://t.co/YMcr... NaN NaN NaN https://twitter.com/dog_rates/status/666421158... 12 10 None None None None None
2325 666418789513326592 NaN NaN 2015-11-17 00:53:15 +0000 <a href="http://twitter.com/download/iphone" r... This is Walter. He is an Alaskan Terrapin. Lov... NaN NaN NaN https://twitter.com/dog_rates/status/666418789... 10 10 Walter None None None None
2326 666411507551481857 NaN NaN 2015-11-17 00:24:19 +0000 <a href="http://twitter.com/download/iphone" r... This is quite the dog. Gets really excited whe... NaN NaN NaN https://twitter.com/dog_rates/status/666411507... 2 10 quite None None None None
2327 666407126856765440 NaN NaN 2015-11-17 00:06:54 +0000 <a href="http://twitter.com/download/iphone" r... This is a southern Vesuvius bumblegruff. Can d... NaN NaN NaN https://twitter.com/dog_rates/status/666407126... 7 10 a None None None None
2328 666396247373291520 NaN NaN 2015-11-16 23:23:41 +0000 <a href="http://twitter.com/download/iphone" r... Oh goodness. A super rare northeast Qdoba kang... NaN NaN NaN https://twitter.com/dog_rates/status/666396247... 9 10 None None None None None
2329 666373753744588802 NaN NaN 2015-11-16 21:54:18 +0000 <a href="http://twitter.com/download/iphone" r... Those are sunglasses and a jean jacket. 11/10 ... NaN NaN NaN https://twitter.com/dog_rates/status/666373753... 11 10 None None None None None
2330 666362758909284353 NaN NaN 2015-11-16 21:10:36 +0000 <a href="http://twitter.com/download/iphone" r... Unique dog here. Very small. Lives in containe... NaN NaN NaN https://twitter.com/dog_rates/status/666362758... 6 10 None None None None None
2331 666353288456101888 NaN NaN 2015-11-16 20:32:58 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a mixed Asiago from the Galápagos... NaN NaN NaN https://twitter.com/dog_rates/status/666353288... 8 10 None None None None None
2332 666345417576210432 NaN NaN 2015-11-16 20:01:42 +0000 <a href="http://twitter.com/download/iphone" r... Look at this jokester thinking seat belt laws ... NaN NaN NaN https://twitter.com/dog_rates/status/666345417... 10 10 None None None None None
2333 666337882303524864 NaN NaN 2015-11-16 19:31:45 +0000 <a href="http://twitter.com/download/iphone" r... This is an extremely rare horned Parthenon. No... NaN NaN NaN https://twitter.com/dog_rates/status/666337882... 9 10 an None None None None
2334 666293911632134144 NaN NaN 2015-11-16 16:37:02 +0000 <a href="http://twitter.com/download/iphone" r... This is a funny dog. Weird toes. Won't come do... NaN NaN NaN https://twitter.com/dog_rates/status/666293911... 3 10 a None None None None
2335 666287406224695296 NaN NaN 2015-11-16 16:11:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an Albanian 3 1/2 legged Episcopalian... NaN NaN NaN https://twitter.com/dog_rates/status/666287406... 1 2 an None None None None
2336 666273097616637952 NaN NaN 2015-11-16 15:14:19 +0000 <a href="http://twitter.com/download/iphone" r... Can take selfies 11/10 https://t.co/ws2AMaNwPW NaN NaN NaN https://twitter.com/dog_rates/status/666273097... 11 10 None None None None None
2337 666268910803644416 NaN NaN 2015-11-16 14:57:41 +0000 <a href="http://twitter.com/download/iphone" r... Very concerned about fellow dog trapped in com... NaN NaN NaN https://twitter.com/dog_rates/status/666268910... 10 10 None None None None None
2338 666104133288665088 NaN NaN 2015-11-16 04:02:55 +0000 <a href="http://twitter.com/download/iphone" r... Not familiar with this breed. No tail (weird).... NaN NaN NaN https://twitter.com/dog_rates/status/666104133... 1 10 None None None None None
2339 666102155909144576 NaN NaN 2015-11-16 03:55:04 +0000 <a href="http://twitter.com/download/iphone" r... Oh my. Here you are seeing an Adobe Setter giv... NaN NaN NaN https://twitter.com/dog_rates/status/666102155... 11 10 None None None None None
2340 666099513787052032 NaN NaN 2015-11-16 03:44:34 +0000 <a href="http://twitter.com/download/iphone" r... Can stand on stump for what seems like a while... NaN NaN NaN https://twitter.com/dog_rates/status/666099513... 8 10 None None None None None
2341 666094000022159362 NaN NaN 2015-11-16 03:22:39 +0000 <a href="http://twitter.com/download/iphone" r... This appears to be a Mongolian Presbyterian mi... NaN NaN NaN https://twitter.com/dog_rates/status/666094000... 9 10 None None None None None
2342 666082916733198337 NaN NaN 2015-11-16 02:38:37 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a well-established sunblockerspan... NaN NaN NaN https://twitter.com/dog_rates/status/666082916... 6 10 None None None None None
2343 666073100786774016 NaN NaN 2015-11-16 01:59:36 +0000 <a href="http://twitter.com/download/iphone" r... Let's hope this flight isn't Malaysian (lol). ... NaN NaN NaN https://twitter.com/dog_rates/status/666073100... 10 10 None None None None None
2344 666071193221509120 NaN NaN 2015-11-16 01:52:02 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a northern speckled Rhododendron.... NaN NaN NaN https://twitter.com/dog_rates/status/666071193... 9 10 None None None None None
2345 666063827256086533 NaN NaN 2015-11-16 01:22:45 +0000 <a href="http://twitter.com/download/iphone" r... This is the happiest dog you will ever see. Ve... NaN NaN NaN https://twitter.com/dog_rates/status/666063827... 10 10 the None None None None
2346 666058600524156928 NaN NaN 2015-11-16 01:01:59 +0000 <a href="http://twitter.com/download/iphone" r... Here is the Rand Paul of retrievers folks! He'... NaN NaN NaN https://twitter.com/dog_rates/status/666058600... 8 10 the None None None None
2347 666057090499244032 NaN NaN 2015-11-16 00:55:59 +0000 <a href="http://twitter.com/download/iphone" r... My oh my. This is a rare blond Canadian terrie... NaN NaN NaN https://twitter.com/dog_rates/status/666057090... 9 10 a None None None None
2348 666055525042405380 NaN NaN 2015-11-16 00:49:46 +0000 <a href="http://twitter.com/download/iphone" r... Here is a Siberian heavily armored polar bear ... NaN NaN NaN https://twitter.com/dog_rates/status/666055525... 10 10 a None None None None
2349 666051853826850816 NaN NaN 2015-11-16 00:35:11 +0000 <a href="http://twitter.com/download/iphone" r... This is an odd dog. Hard on the outside but lo... NaN NaN NaN https://twitter.com/dog_rates/status/666051853... 2 10 an None None None None
2350 666050758794694657 NaN NaN 2015-11-16 00:30:50 +0000 <a href="http://twitter.com/download/iphone" r... This is a truly beautiful English Wilson Staff... NaN NaN NaN https://twitter.com/dog_rates/status/666050758... 10 10 a None None None None
2351 666049248165822465 NaN NaN 2015-11-16 00:24:50 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a 1949 1st generation vulpix. Enj... NaN NaN NaN https://twitter.com/dog_rates/status/666049248... 5 10 None None None None None
2352 666044226329800704 NaN NaN 2015-11-16 00:04:52 +0000 <a href="http://twitter.com/download/iphone" r... This is a purebred Piers Morgan. Loves to Netf... NaN NaN NaN https://twitter.com/dog_rates/status/666044226... 6 10 a None None None None
2353 666033412701032449 NaN NaN 2015-11-15 23:21:54 +0000 <a href="http://twitter.com/download/iphone" r... Here is a very happy pup. Big fan of well-main... NaN NaN NaN https://twitter.com/dog_rates/status/666033412... 9 10 a None None None None
2354 666029285002620928 NaN NaN 2015-11-15 23:05:30 +0000 <a href="http://twitter.com/download/iphone" r... This is a western brown Mitsubishi terrier. Up... NaN NaN NaN https://twitter.com/dog_rates/status/666029285... 7 10 a None None None None
2355 666020888022790149 NaN NaN 2015-11-15 22:32:08 +0000 <a href="http://twitter.com/download/iphone" r... Here we have a Japanese Irish Setter. Lost eye... NaN NaN NaN https://twitter.com/dog_rates/status/666020888... 8 10 None None None None None
In [19]:
df_img_pred
Out[19]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog
0 666020888022790149 https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh_springer_spaniel 0.465074 True collie 1.566650e-01 True Shetland_sheepdog 6.142850e-02 True
1 666029285002620928 https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 redbone 0.506826 True miniature_pinscher 7.419170e-02 True Rhodesian_ridgeback 7.201000e-02 True
2 666033412701032449 https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German_shepherd 0.596461 True malinois 1.385840e-01 True bloodhound 1.161970e-01 True
3 666044226329800704 https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian_ridgeback 0.408143 True redbone 3.606870e-01 True miniature_pinscher 2.227520e-01 True
4 666049248165822465 https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 miniature_pinscher 0.560311 True Rottweiler 2.436820e-01 True Doberman 1.546290e-01 True
5 666050758794694657 https://pbs.twimg.com/media/CT5Jof1WUAEuVxN.jpg 1 Bernese_mountain_dog 0.651137 True English_springer 2.637880e-01 True Greater_Swiss_Mountain_dog 1.619920e-02 True
6 666051853826850816 https://pbs.twimg.com/media/CT5KoJ1WoAAJash.jpg 1 box_turtle 0.933012 False mud_turtle 4.588540e-02 False terrapin 1.788530e-02 False
7 666055525042405380 https://pbs.twimg.com/media/CT5N9tpXIAAifs1.jpg 1 chow 0.692517 True Tibetan_mastiff 5.827940e-02 True fur_coat 5.444860e-02 False
8 666057090499244032 https://pbs.twimg.com/media/CT5PY90WoAAQGLo.jpg 1 shopping_cart 0.962465 False shopping_basket 1.459380e-02 False golden_retriever 7.958960e-03 True
9 666058600524156928 https://pbs.twimg.com/media/CT5Qw94XAAA_2dP.jpg 1 miniature_poodle 0.201493 True komondor 1.923050e-01 True soft-coated_wheaten_terrier 8.208610e-02 True
10 666063827256086533 https://pbs.twimg.com/media/CT5Vg_wXIAAXfnj.jpg 1 golden_retriever 0.775930 True Tibetan_mastiff 9.371780e-02 True Labrador_retriever 7.242660e-02 True
11 666071193221509120 https://pbs.twimg.com/media/CT5cN_3WEAAlOoZ.jpg 1 Gordon_setter 0.503672 True Yorkshire_terrier 1.742010e-01 True Pekinese 1.094540e-01 True
12 666073100786774016 https://pbs.twimg.com/media/CT5d9DZXAAALcwe.jpg 1 Walker_hound 0.260857 True English_foxhound 1.753820e-01 True Ibizan_hound 9.747050e-02 True
13 666082916733198337 https://pbs.twimg.com/media/CT5m4VGWEAAtKc8.jpg 1 pug 0.489814 True bull_mastiff 4.047220e-01 True French_bulldog 4.895950e-02 True
14 666094000022159362 https://pbs.twimg.com/media/CT5w9gUW4AAsBNN.jpg 1 bloodhound 0.195217 True German_shepherd 7.825980e-02 True malinois 7.562780e-02 True
15 666099513787052032 https://pbs.twimg.com/media/CT51-JJUEAA6hV8.jpg 1 Lhasa 0.582330 True Shih-Tzu 1.661920e-01 True Dandie_Dinmont 8.968830e-02 True
16 666102155909144576 https://pbs.twimg.com/media/CT54YGiWUAEZnoK.jpg 1 English_setter 0.298617 True Newfoundland 1.498420e-01 True borzoi 1.336490e-01 True
17 666104133288665088 https://pbs.twimg.com/media/CT56LSZWoAAlJj2.jpg 1 hen 0.965932 False cock 3.391940e-02 False partridge 5.206580e-05 False
18 666268910803644416 https://pbs.twimg.com/media/CT8QCd1WEAADXws.jpg 1 desktop_computer 0.086502 False desk 8.554740e-02 False bookcase 7.947970e-02 False
19 666273097616637952 https://pbs.twimg.com/media/CT8T1mtUwAA3aqm.jpg 1 Italian_greyhound 0.176053 True toy_terrier 1.118840e-01 True basenji 1.111520e-01 True
20 666287406224695296 https://pbs.twimg.com/media/CT8g3BpUEAAuFjg.jpg 1 Maltese_dog 0.857531 True toy_poodle 6.306380e-02 True miniature_poodle 2.558060e-02 True
21 666293911632134144 https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg 1 three-toed_sloth 0.914671 False otter 1.525000e-02 False great_grey_owl 1.320720e-02 False
22 666337882303524864 https://pbs.twimg.com/media/CT9OwFIWEAMuRje.jpg 1 ox 0.416669 False Newfoundland 2.784070e-01 True groenendael 1.026430e-01 True
23 666345417576210432 https://pbs.twimg.com/media/CT9Vn7PWoAA_ZCM.jpg 1 golden_retriever 0.858744 True Chesapeake_Bay_retriever 5.478680e-02 True Labrador_retriever 1.424090e-02 True
24 666353288456101888 https://pbs.twimg.com/media/CT9cx0tUEAAhNN_.jpg 1 malamute 0.336874 True Siberian_husky 1.476550e-01 True Eskimo_dog 9.341240e-02 True
25 666362758909284353 https://pbs.twimg.com/media/CT9lXGsUcAAyUFt.jpg 1 guinea_pig 0.996496 False skunk 2.402450e-03 False hamster 4.608630e-04 False
26 666373753744588802 https://pbs.twimg.com/media/CT9vZEYWUAAlZ05.jpg 1 soft-coated_wheaten_terrier 0.326467 True Afghan_hound 2.595510e-01 True briard 2.068030e-01 True
27 666396247373291520 https://pbs.twimg.com/media/CT-D2ZHWIAA3gK1.jpg 1 Chihuahua 0.978108 True toy_terrier 9.396970e-03 True papillon 4.576810e-03 True
28 666407126856765440 https://pbs.twimg.com/media/CT-NvwmW4AAugGZ.jpg 1 black-and-tan_coonhound 0.529139 True bloodhound 2.442200e-01 True flat-coated_retriever 1.738100e-01 True
29 666411507551481857 https://pbs.twimg.com/media/CT-RugiWIAELEaq.jpg 1 coho 0.404640 False barracouta 2.714850e-01 False gar 1.899450e-01 False
30 666418789513326592 https://pbs.twimg.com/media/CT-YWb7U8AA7QnN.jpg 1 toy_terrier 0.149680 True papillon 1.482580e-01 True Chihuahua 1.428600e-01 True
31 666421158376562688 https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg 1 Blenheim_spaniel 0.906777 True cocker_spaniel 9.034640e-02 True Shih-Tzu 1.116870e-03 True
32 666428276349472768 https://pbs.twimg.com/media/CT-g-0DUwAEQdSn.jpg 1 Pembroke 0.371361 True chow 2.493940e-01 True Pomeranian 2.418780e-01 True
33 666430724426358785 https://pbs.twimg.com/media/CT-jNYqW4AAPi2M.jpg 1 llama 0.505184 False Irish_terrier 1.041090e-01 True dingo 6.207120e-02 False
34 666435652385423360 https://pbs.twimg.com/media/CT-nsTQWEAEkyDn.jpg 1 Chesapeake_Bay_retriever 0.184130 True chain_saw 5.677530e-02 False power_drill 3.676340e-02 False
35 666437273139982337 https://pbs.twimg.com/media/CT-pKmRWIAAxUWj.jpg 1 Chihuahua 0.671853 True beagle 1.246800e-01 True Saluki 4.409420e-02 True
36 666447344410484738 https://pbs.twimg.com/media/CT-yU5QWwAEjLX5.jpg 1 curly-coated_retriever 0.322084 True giant_schnauzer 2.879550e-01 True Labrador_retriever 1.663310e-01 True
37 666454714377183233 https://pbs.twimg.com/media/CT-5Bs-WUAA2JeC.jpg 1 dalmatian 0.278954 True Labrador_retriever 2.376120e-01 True Great_Pyrenees 1.711060e-01 True
38 666644823164719104 https://pbs.twimg.com/media/CUBl6IwVAAA9_zT.jpg 1 Ibizan_hound 0.044333 True Pembroke 4.320930e-02 True West_Highland_white_terrier 3.890560e-02 True
39 666649482315059201 https://pbs.twimg.com/media/CUBqKnLWwAA5OQB.jpg 1 Border_collie 0.447803 True English_springer 1.704970e-01 True collie 1.392060e-01 True
40 666691418707132416 https://pbs.twimg.com/media/CUCQTpEWEAA7EDz.jpg 1 German_shepherd 0.975401 True beagle 8.687270e-03 True bloodhound 5.394040e-03 True
41 666701168228331520 https://pbs.twimg.com/media/CUCZLHlUAAAeAig.jpg 1 Labrador_retriever 0.887707 True Chihuahua 2.930700e-02 True French_bulldog 2.075630e-02 True
42 666739327293083650 https://pbs.twimg.com/media/CUC74aTWoAInZey.jpg 1 miniature_poodle 0.546933 True cocker_spaniel 1.652550e-01 True toy_poodle 9.595890e-02 True
43 666776908487630848 https://pbs.twimg.com/media/CUDeDoWUYAAD-EM.jpg 1 seat_belt 0.375057 False miniature_pinscher 1.671750e-01 True Chihuahua 8.695060e-02 True
44 666781792255496192 https://pbs.twimg.com/media/CUDigRXXIAATI_H.jpg 1 Italian_greyhound 0.618316 True Weimaraner 1.513630e-01 True vizsla 8.598910e-02 True
45 666786068205871104 https://pbs.twimg.com/media/CUDmZIkWcAAIPPe.jpg 1 snail 0.999888 False slug 5.514170e-05 False acorn 2.625800e-05 False
46 666804364988780544 https://pbs.twimg.com/media/CUD3A7YWoAA82N0.jpg 1 English_setter 0.328792 True Brittany_spaniel 2.835450e-01 True Ibizan_hound 5.746150e-02 True
47 666817836334096384 https://pbs.twimg.com/media/CUEDSMEWEAAuXVZ.jpg 1 miniature_schnauzer 0.496953 True standard_schnauzer 2.852760e-01 True giant_schnauzer 7.376370e-02 True
48 666826780179869698 https://pbs.twimg.com/media/CUELa0NUkAAscGC.jpg 1 Maltese_dog 0.359383 True teddy 1.487590e-01 False West_Highland_white_terrier 1.060070e-01 True
49 666835007768551424 https://pbs.twimg.com/media/CUES51dXIAEahyG.jpg 1 Airedale 0.448459 True toy_poodle 1.240300e-01 True teddy 1.101830e-01 False
50 666837028449972224 https://pbs.twimg.com/media/CUEUva1WsAA2jPb.jpg 1 triceratops 0.442113 False armadillo 1.140710e-01 False common_iguana 4.325530e-02 False
51 666983947667116034 https://pbs.twimg.com/media/CUGaXDhW4AY9JUH.jpg 1 swab 0.589446 False chain_saw 1.901420e-01 False wig 3.450970e-02 False
52 666996132027977728 https://pbs.twimg.com/media/CUGlb6iUwAITEbW.jpg 1 hay 0.507637 False Rottweiler 6.248990e-02 True water_buffalo 4.842470e-02 False
53 667012601033924608 https://pbs.twimg.com/media/CUG0bC0U8AAw2su.jpg 1 hyena 0.987230 False African_hunting_dog 1.260080e-02 False coyote 5.735010e-05 False
54 667044094246576128 https://pbs.twimg.com/media/CUHREBXXAAE6A9b.jpg 1 golden_retriever 0.765266 True Labrador_retriever 2.066940e-01 True seat_belt 1.066690e-02 False
55 667062181243039745 https://pbs.twimg.com/media/CUHhgvHUAAA4aB0.jpg 1 Chesapeake_Bay_retriever 0.825678 True vizsla 9.099800e-02 True kelpie 2.295620e-02 True
56 667065535570550784 https://pbs.twimg.com/media/CUHkkJpXIAA2w3n.jpg 1 jigsaw_puzzle 0.560001 False doormat 1.032590e-01 False space_heater 4.256800e-02 False
57 667073648344346624 https://pbs.twimg.com/media/CUHr8WbWEAEBPgf.jpg 1 Chihuahua 0.483682 True pug 9.249390e-02 True Brabancon_griffon 5.749540e-02 True
58 667090893657276420 https://pbs.twimg.com/media/CUH7oLuUsAELWib.jpg 1 Chihuahua 0.959514 True Italian_greyhound 5.370150e-03 True Pomeranian 2.641330e-03 True
59 667119796878725120 https://pbs.twimg.com/media/CUIV6F7XIAA1tAM.jpg 1 Pembroke 0.741563 True Chihuahua 5.786590e-02 True toy_poodle 3.912510e-02 True
60 667138269671505920 https://pbs.twimg.com/media/CUImtzEVAAAZNJo.jpg 1 West_Highland_white_terrier 0.747713 True Samoyed 2.436290e-01 True toy_poodle 1.803970e-03 True
61 667152164079423490 https://pbs.twimg.com/media/CUIzWk_UwAAfUNq.jpg 1 toy_poodle 0.535411 True Pomeranian 8.754400e-02 True miniature_poodle 6.205000e-02 True
62 667160273090932737 https://pbs.twimg.com/media/CUI6uuaW4AAvCIs.jpg 1 golden_retriever 0.471351 True miniature_poodle 9.199210e-02 True standard_poodle 8.738540e-02 True
63 667165590075940865 https://pbs.twimg.com/media/CUI_kHBWsAAAef5.jpg 1 miniature_pinscher 0.140173 True Rottweiler 1.340940e-01 True beagle 8.189980e-02 True
64 667171260800061440 https://pbs.twimg.com/media/CUJEuRIXIAAPDLt.jpg 1 giant_schnauzer 0.841265 True Lakeland_terrier 5.274420e-02 True Irish_water_spaniel 3.440170e-02 True
65 667174963120574464 https://pbs.twimg.com/media/CUJIFoJWsAAL3Dc.jpg 1 toy_poodle 0.266437 True Chihuahua 2.432230e-01 True bluetick 7.280630e-02 True
66 667176164155375616 https://pbs.twimg.com/media/CUJJLtWWsAE-go5.jpg 1 soft-coated_wheaten_terrier 0.318981 True Lakeland_terrier 2.152180e-01 True toy_poodle 1.060140e-01 True
67 667177989038297088 https://pbs.twimg.com/media/CUJK18UWEAEg7AR.jpg 1 vizsla 0.259249 True Chesapeake_Bay_retriever 1.762930e-01 True Weimaraner 1.123690e-01 True
68 667182792070062081 https://pbs.twimg.com/media/CUJPNjOWsAAZRqP.jpg 1 golden_retriever 0.949892 True Irish_setter 1.056380e-02 True Chesapeake_Bay_retriever 5.821410e-03 True
69 667188689915760640 https://pbs.twimg.com/media/CUJUk2iWUAAVtOv.jpg 1 vacuum 0.335830 False swab 2.652780e-01 False toilet_tissue 1.407030e-01 False
70 667192066997374976 https://pbs.twimg.com/media/CUJXpRBXIAAN0yz.jpg 1 Rottweiler 0.283640 True miniature_pinscher 1.481120e-01 True black-and-tan_coonhound 9.558480e-02 True
71 667200525029539841 https://pbs.twimg.com/media/CUJfVMPXIAAgbue.jpg 1 Siberian_husky 0.694904 True malamute 2.320060e-01 True Eskimo_dog 5.063510e-02 True
72 667211855547486208 https://pbs.twimg.com/media/CUJppKJWoAA75NP.jpg 1 golden_retriever 0.462556 True Labrador_retriever 4.549370e-01 True kuvasz 2.419330e-02 True
73 667369227918143488 https://pbs.twimg.com/media/CUL4xR9UkAEdlJ6.jpg 1 teddy 0.709545 False bath_towel 1.272850e-01 False Christmas_stocking 2.856750e-02 False
74 667393430834667520 https://pbs.twimg.com/media/CUMOyd3XIAAl13H.jpg 1 papillon 0.557009 True Border_collie 2.719630e-01 True collie 7.347290e-02 True
75 667405339315146752 https://pbs.twimg.com/media/CUMZnmhUEAEbtis.jpg 1 Saint_Bernard 0.381377 True Leonberg 1.279980e-01 True golden_retriever 6.935680e-02 True
76 667435689202614272 https://pbs.twimg.com/media/CUM1OHCW4AEgGSi.jpg 1 Rottweiler 0.999091 True miniature_pinscher 4.503550e-04 True black-and-tan_coonhound 1.571400e-04 True
77 667437278097252352 https://pbs.twimg.com/media/CUM2qWaWoAUZ06L.jpg 1 porcupine 0.989154 False bath_towel 6.300490e-03 False badger 9.663400e-04 False
78 667443425659232256 https://pbs.twimg.com/media/CUM8QZwW4AAVsBl.jpg 1 goose 0.980815 False drake 6.917770e-03 False hen 5.255170e-03 False
79 667453023279554560 https://pbs.twimg.com/media/CUNE_OSUwAAdHhX.jpg 1 Labrador_retriever 0.825670 True French_bulldog 5.663940e-02 True Staffordshire_bullterrier 5.401840e-02 True
80 667455448082227200 https://pbs.twimg.com/media/CUNHMXTU8AAS3HH.jpg 1 Tibetan_terrier 0.676376 True Irish_terrier 5.493340e-02 True Yorkshire_terrier 4.057550e-02 True
81 667470559035432960 https://pbs.twimg.com/media/CUNU78YWEAECmpB.jpg 1 toy_poodle 0.304175 True pug 2.234270e-01 True Lakeland_terrier 7.331650e-02 True
82 667491009379606528 https://pbs.twimg.com/media/CUNniSlUYAEj1Jl.jpg 1 borzoi 0.852088 True ice_bear 1.322640e-01 False weasel 5.729980e-03 False
83 667495797102141441 https://pbs.twimg.com/media/CUNr4-7UwAAg2lq.jpg 1 Chihuahua 0.143957 True Christmas_stocking 1.186510e-01 False ski_mask 9.248170e-02 False
84 667502640335572993 https://pbs.twimg.com/media/CUNyHTMUYAAQVch.jpg 1 Labrador_retriever 0.996709 True golden_retriever 1.688210e-03 True beagle 7.116670e-04 True
85 667509364010450944 https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg 1 beagle 0.636169 True Labrador_retriever 1.192560e-01 True golden_retriever 8.254920e-02 True
86 667517642048163840 https://pbs.twimg.com/media/CUN_wiBUkAAakT0.jpg 1 Italian_greyhound 0.125176 True standard_poodle 8.457150e-02 True cocker_spaniel 8.134690e-02 True
87 667524857454854144 https://pbs.twimg.com/media/CUOGUfJW4AA_eni.jpg 1 hare 0.447893 False dhole 9.243530e-02 False Chesapeake_Bay_retriever 8.812240e-02 True
88 667530908589760512 https://pbs.twimg.com/media/CUOL0uGUkAAx7yh.jpg 1 golden_retriever 0.633037 True kuvasz 1.463910e-01 True Labrador_retriever 4.618370e-02 True
89 667534815156183040 https://pbs.twimg.com/media/CUOPYI5UcAAj_nO.jpg 1 Pembroke 0.435254 True Cardigan 3.074070e-01 True cocker_spaniel 3.315830e-02 True
90 667538891197542400 https://pbs.twimg.com/media/CUOTFZOW4AABsfW.jpg 1 Yorkshire_terrier 0.618957 True silky_terrier 3.003130e-01 True Australian_terrier 5.341200e-02 True
91 667544320556335104 https://pbs.twimg.com/media/CUOYBbbWIAAXQGU.jpg 1 Pomeranian 0.412893 True Pembroke 3.129580e-01 True Chihuahua 7.196040e-02 True
92 667546741521195010 https://pbs.twimg.com/media/CUOaOWXWcAA0_Jy.jpg 1 toy_poodle 0.787424 True miniature_poodle 2.022250e-01 True teddy 4.047220e-03 False
93 667549055577362432 https://pbs.twimg.com/media/CUOcVCwWsAERUKY.jpg 1 electric_fan 0.984377 False spotlight 7.736710e-03 False lampshade 1.901230e-03 False
94 667550882905632768 https://pbs.twimg.com/media/CUObvUJVEAAnYPF.jpg 1 web_site 0.998258 False dishwasher 2.010840e-04 False oscilloscope 1.417360e-04 False
95 667550904950915073 https://pbs.twimg.com/media/CUOb_gUUkAACXdS.jpg 1 web_site 0.999335 False vizsla 8.106320e-05 True collie 6.915900e-05 True
96 667724302356258817 https://pbs.twimg.com/media/CUQ7tv3W4AA3KlI.jpg 1 ibex 0.619098 False bighorn 1.251190e-01 False ram 7.467320e-02 False
97 667728196545200128 https://pbs.twimg.com/media/CUQ_QahUAAAVQjn.jpg 1 kuvasz 0.360159 True golden_retriever 2.937440e-01 True Labrador_retriever 2.706730e-01 True
98 667766675769573376 https://pbs.twimg.com/media/CURiQMnUAAAPT2M.jpg 1 fire_engine 0.883493 False tow_truck 7.473390e-02 False jeep 1.277260e-02 False
99 667773195014021121 https://pbs.twimg.com/media/CURoLrOVEAAaWdR.jpg 1 West_Highland_white_terrier 0.360465 True pug 9.349410e-02 True ice_bear 6.903820e-02 False
100 667782464991965184 https://pbs.twimg.com/media/CURwm3cUkAARcO6.jpg 1 lorikeet 0.466149 False hummingbird 8.301100e-02 False African_grey 5.424740e-02 False
101 667793409583771648 https://pbs.twimg.com/media/CUR6jqVWsAEgGot.jpg 1 dalmatian 0.535073 True English_setter 4.512190e-01 True Great_Dane 8.163610e-03 True
102 667801013445750784 https://pbs.twimg.com/media/CUSBemVUEAAn-6V.jpg 1 flat-coated_retriever 0.508392 True Chesapeake_Bay_retriever 2.622390e-01 True curly-coated_retriever 4.891980e-02 True
103 667806454573760512 https://pbs.twimg.com/media/CUSGbXeVAAAgztZ.jpg 1 toyshop 0.253089 False Chihuahua 1.871550e-01 True Brabancon_griffon 1.127990e-01 True
104 667832474953625600 https://pbs.twimg.com/media/CUSeGFNW4AAyyHC.jpg 1 miniature_pinscher 0.214200 True bath_towel 1.467890e-01 False Chihuahua 1.041520e-01 True
105 667861340749471744 https://pbs.twimg.com/media/CUS4WJ-UsAEJj10.jpg 1 malamute 0.967275 True Siberian_husky 1.616750e-02 True Eskimo_dog 1.127740e-02 True
106 667866724293877760 https://pbs.twimg.com/media/CUS9PlUWwAANeAD.jpg 1 jigsaw_puzzle 1.000000 False prayer_rug 1.011300e-08 False doormat 1.740170e-10 False
107 667873844930215936 https://pbs.twimg.com/media/CUTDtyGXIAARxus.jpg 1 common_iguana 0.999647 False frilled_lizard 1.811500e-04 False African_chameleon 1.283570e-04 False
108 667878741721415682 https://pbs.twimg.com/media/CUTILFiWcAE8Rle.jpg 1 seat_belt 0.200373 False miniature_pinscher 1.060030e-01 True schipperke 1.047330e-01 True
109 667885044254572545 https://pbs.twimg.com/media/CUTN5V4XAAAIa4R.jpg 1 malamute 0.088530 True golden_retriever 8.749860e-02 True muzzle 7.500770e-02 False
110 667886921285246976 https://pbs.twimg.com/media/CUTPnPCW4AI7R0y.jpg 1 Pomeranian 0.800432 True Pekinese 1.684450e-01 True Chihuahua 8.949520e-03 True
111 667902449697558528 https://pbs.twimg.com/media/CUTdvAJXIAAMS4q.jpg 1 Norwegian_elkhound 0.298881 True malamute 2.794790e-01 True Eskimo_dog 1.984280e-01 True
112 667911425562669056 https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg 1 frilled_lizard 0.257695 False ox 2.351600e-01 False triceratops 8.531690e-02 False
113 667915453470232577 https://pbs.twimg.com/media/CUTpj-GWcAATc6A.jpg 1 leatherback_turtle 0.452517 False boxer 1.966550e-01 True terrapin 1.609830e-01 False
114 667924896115245057 https://pbs.twimg.com/media/CUTyJpHWcAATl0O.jpg 1 Labrador_retriever 0.209051 True hog 2.039800e-01 False Newfoundland 1.659140e-01 True
115 667937095915278337 https://pbs.twimg.com/media/CUT9PuQWwAABQv7.jpg 1 hamster 0.172078 False guinea_pig 9.492420e-02 False Band_Aid 5.999520e-02 False
116 668113020489474048 https://pbs.twimg.com/media/CUWdPsqWcAERQVv.jpg 1 Pembroke 0.548896 True Cardigan 1.911010e-01 True collie 5.981410e-02 True
117 668142349051129856 https://pbs.twimg.com/media/CUW37BzWsAAlJlN.jpg 1 Angora 0.918834 False hen 3.779340e-02 False wood_rabbit 1.101490e-02 False
118 668154635664932864 https://pbs.twimg.com/media/CUXDGR2WcAAUQKz.jpg 1 Arctic_fox 0.473584 False wallaby 2.614110e-01 False white_wolf 8.094780e-02 False
119 668171859951755264 https://pbs.twimg.com/media/CUXSwy8W4AA6uet.jpg 1 Chihuahua 0.664834 True cowboy_boot 6.034300e-02 False giant_panda 5.983750e-02 False
120 668190681446379520 https://pbs.twimg.com/media/CUXj4SgXAAETlu6.jpg 1 Blenheim_spaniel 0.958402 True cocker_spaniel 2.676430e-02 True Welsh_springer_spaniel 7.789910e-03 True
121 668204964695683073 https://pbs.twimg.com/media/CUXw3qHWoAAk8HJ.jpg 1 Labrador_retriever 0.655180 True golden_retriever 1.078840e-01 True Chesapeake_Bay_retriever 6.583470e-02 True
122 668221241640230912 https://pbs.twimg.com/media/CUX_rAyWsAYZOQ5.jpg 1 chow 0.395101 True golden_retriever 3.721150e-01 True Labrador_retriever 1.487850e-01 True
123 668226093875376128 https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg 1 trombone 0.390339 False cornet 3.141490e-01 False French_horn 2.551820e-01 False
124 668237644992782336 https://pbs.twimg.com/media/CUYOl0kW4AAVe_p.jpg 1 chow 0.809320 True minivan 7.131070e-02 False Pekinese 3.786960e-02 True
125 668248472370458624 https://pbs.twimg.com/media/CUYYcMfXAAAixe7.jpg 1 Chihuahua 0.734547 True miniature_pinscher 6.829440e-02 True toy_terrier 4.636710e-02 True
126 668256321989451776 https://pbs.twimg.com/media/CUYflCXWEAAzQVu.jpg 1 canoe 0.407683 False paddle 1.155500e-01 False Pembroke 9.442940e-02 True
127 668268907921326080 https://pbs.twimg.com/media/CUYrBNQUkAA-zx4.jpg 1 Pembroke 0.484830 True Cardigan 4.253030e-01 True basenji 1.475350e-02 True
128 668274247790391296 https://pbs.twimg.com/media/CUYv4d2WUAAziXs.jpg 1 soft-coated_wheaten_terrier 0.406374 True Lakeland_terrier 2.638540e-01 True toy_poodle 1.508440e-01 True
129 668286279830867968 https://pbs.twimg.com/media/CUY60usWoAAdBxx.jpg 1 golden_retriever 0.215944 True basset 1.892140e-01 True Cardigan 1.130100e-01 True
130 668291999406125056 https://pbs.twimg.com/media/CUZABzGW4AE5F0k.jpg 1 web_site 0.995535 False skunk 1.363490e-03 False badger 6.856500e-04 False
131 668297328638447616 https://pbs.twimg.com/media/CUZE4IWW4AAZmDf.jpg 1 king_penguin 0.606747 False ice_bear 2.642210e-01 False Eskimo_dog 3.278380e-02 True
132 668466899341221888 https://pbs.twimg.com/media/CUbfGbbWoAApZth.jpg 1 shopping_basket 0.398361 False hamper 3.632220e-01 False bassinet 8.417350e-02 False
133 668480044826800133 https://pbs.twimg.com/media/CUbrDWOWcAEyMdM.jpg 1 Arctic_fox 0.119243 False Labrador_retriever 9.996480e-02 True pug 8.671650e-02 True
134 668484198282485761 https://pbs.twimg.com/media/CUbu1GAWsAEH3E-.jpg 1 standard_poodle 0.587372 True Bedlington_terrier 1.824110e-01 True Afghan_hound 4.096800e-02 True
135 668496999348633600 https://pbs.twimg.com/media/CUb6ebKWcAAJkd0.jpg 1 Staffordshire_bullterrier 0.412879 True miniature_pinscher 1.614880e-01 True American_Staffordshire_terrier 1.124950e-01 True
136 668507509523615744 https://pbs.twimg.com/media/CUcECBYWcAAzFRg.jpg 1 basenji 0.055379 True Shetland_sheepdog 5.432210e-02 True whippet 5.191340e-02 True
137 668528771708952576 https://pbs.twimg.com/media/CUcXXpxWUAAUJ__.jpg 1 Labrador_retriever 0.195835 True kuvasz 1.216070e-01 True English_setter 8.146440e-02 True
138 668537837512433665 https://pbs.twimg.com/media/CUcfnWlWsAAzlwE.jpg 1 Lakeland_terrier 0.372988 True toy_poodle 2.504450e-01 True Chihuahua 1.897370e-01 True
139 668542336805281792 https://pbs.twimg.com/media/CUcjtL8WUAAAJoz.jpg 1 American_Staffordshire_terrier 0.267695 True French_bulldog 2.540500e-01 True Staffordshire_bullterrier 2.123810e-01 True
140 668544745690562560 https://pbs.twimg.com/media/CUcl5jeWsAA6ufS.jpg 1 bearskin 0.427870 False bow 2.588580e-01 False panpipe 2.156260e-02 False
141 668567822092664832 https://pbs.twimg.com/media/CUc64knWoAkZt70.jpg 1 Shih-Tzu 0.985649 True Lhasa 7.078320e-03 True Pekinese 3.053230e-03 True
142 668614819948453888 https://pbs.twimg.com/media/CUdloW8WEAAxB_Y.jpg 1 bustard 0.380772 False pelican 1.005540e-01 False crane 8.471350e-02 False
143 668620235289837568 https://pbs.twimg.com/media/CUdqjvAWUAANfoU.jpg 1 crash_helmet 0.757942 False toaster 3.749680e-02 False mouse 2.727090e-02 False
144 668623201287675904 https://pbs.twimg.com/media/CUdtP1xUYAIeBnE.jpg 4 Chihuahua 0.708163 True Pomeranian 9.137190e-02 True titi 6.732550e-02 False
145 668625577880875008 https://pbs.twimg.com/media/CUdvambWoAA007z.jpg 1 ox 0.071536 False groenendael 5.445480e-02 True Angora 4.502800e-02 False
146 668627278264475648 https://pbs.twimg.com/media/CUdw9thWsAA4mB9.jpg 1 French_bulldog 0.965403 True pug 8.603810e-03 True Boston_bull 8.003560e-03 True
147 668631377374486528 https://pbs.twimg.com/media/CUd0sSvWsAA85wO.jpg 1 miniature_schnauzer 0.904549 True Australian_terrier 2.252940e-02 True silky_terrier 1.524320e-02 True
148 668633411083464705 https://pbs.twimg.com/media/CUd2ieCUcAAexyT.jpg 1 Pekinese 0.589011 True Shih-Tzu 3.909870e-01 True Japanese_spaniel 3.310350e-03 True
149 668636665813057536 https://pbs.twimg.com/media/CUd5gBGWwAA0IVA.jpg 1 komondor 0.999956 True llama 4.309810e-05 False ram 2.160900e-07 False
150 668641109086707712 https://pbs.twimg.com/media/CUd9ivxWUAAuXSQ.jpg 1 vacuum 0.432594 False pug 1.463110e-01 True toilet_tissue 2.450030e-02 False
151 668643542311546881 https://pbs.twimg.com/media/CUd_wYRWUAAZsKr.jpg 1 common_iguana 0.483972 False frilled_lizard 1.113770e-01 False sandbar 7.898340e-02 False
152 668645506898350081 https://pbs.twimg.com/media/CUeBiqgXAAARLbj.jpg 1 ski_mask 0.302854 False knee_pad 9.688120e-02 False balance_beam 8.407560e-02 False
153 668655139528511488 https://pbs.twimg.com/media/CUeKTeYW4AEr_lx.jpg 1 beagle 0.319110 True Italian_greyhound 1.033380e-01 True basenji 9.193000e-02 True
154 668779399630725120 https://pbs.twimg.com/media/CUf7UIaWUAEuKFr.jpg 1 Chesapeake_Bay_retriever 0.285508 True Weimaraner 1.468320e-01 True black-footed_ferret 6.086480e-02 False
155 668815180734689280 https://pbs.twimg.com/media/CUgb21RXIAAlff7.jpg 1 redbone 0.461172 True Italian_greyhound 2.707330e-01 True miniature_pinscher 1.097520e-01 True
156 668826086256599040 https://pbs.twimg.com/media/CUglxbFXAAA5O0d.jpg 1 malinois 0.640185 True Irish_terrier 1.537000e-01 True Rhodesian_ridgeback 6.845650e-02 True
157 668852170888998912 https://pbs.twimg.com/media/CUg9gBvWoAAmx-2.jpg 1 golden_retriever 0.903529 True Tibetan_mastiff 4.149700e-02 True kuvasz 2.250050e-02 True
158 668872652652679168 https://pbs.twimg.com/media/CUhQIAhXAAA2j7u.jpg 1 teddy 0.413379 False pillow 3.256230e-01 False miniature_schnauzer 3.553660e-02 True
159 668892474547511297 https://pbs.twimg.com/media/CUhiJ63WEAAw2qm.jpg 1 kelpie 0.421979 True collie 2.270600e-01 True Cardigan 1.682110e-01 True
160 668902994700836864 https://pbs.twimg.com/media/CUhruUgUAAAa8FQ.jpg 1 Brittany_spaniel 0.828425 True Ibizan_hound 4.308200e-02 True Blenheim_spaniel 2.800360e-02 True
161 668932921458302977 https://pbs.twimg.com/media/CUiG6_ZXAAAPaw_.jpg 1 standard_poodle 0.237638 True Old_English_sheepdog 1.955730e-01 True toy_poodle 1.446580e-01 True
162 668955713004314625 https://pbs.twimg.com/media/CUibq3uVAAAup_O.jpg 1 cocker_spaniel 0.367492 True Lakeland_terrier 2.726210e-01 True soft-coated_wheaten_terrier 6.700630e-02 True
163 668960084974809088 https://pbs.twimg.com/media/CUifpn4WUAAS5X3.jpg 1 shower_curtain 0.226309 False Chesapeake_Bay_retriever 1.658780e-01 True bathtub 5.672610e-02 False
164 668975677807423489 https://pbs.twimg.com/media/CUit1O1WoAEBHjj.jpg 1 basset 0.605437 True Welsh_springer_spaniel 1.847830e-01 True Saint_Bernard 1.162990e-01 True
165 668979806671884288 https://pbs.twimg.com/media/CUixld6WoAArDrJ.jpg 1 golden_retriever 0.608537 True Irish_setter 9.707800e-02 True redbone 7.602220e-02 True
166 668981893510119424 https://pbs.twimg.com/media/CUize-0WEAAerAK.jpg 1 jellyfish 0.447246 False coral_reef 2.386250e-01 False goldfish 4.022690e-02 False
167 668986018524233728 https://pbs.twimg.com/media/CUi3PIrWoAAPvPT.jpg 1 doormat 0.976103 False Chihuahua 5.639720e-03 True Norfolk_terrier 3.912650e-03 True
168 668988183816871936 https://pbs.twimg.com/media/CUi5M7TXIAAY0gj.jpg 1 Arabian_camel 0.999614 False bison 2.280900e-04 False llama 6.717870e-05 False
169 668989615043424256 https://pbs.twimg.com/media/CUi6geuUYAIvE9n.jpg 1 pug 0.917326 True waffle_iron 1.491750e-02 False Chihuahua 1.352440e-02 True
170 668992363537309700 https://pbs.twimg.com/media/CUi9ARGWUAEyWqo.jpg 1 lynx 0.287506 False tabby 2.060480e-01 False koala 8.141930e-02 False
171 668994913074286592 https://pbs.twimg.com/media/CUi_UtnWIAEtfqz.jpg 1 hog 0.113789 False English_springer 8.976330e-02 True French_bulldog 8.218640e-02 True
172 669000397445533696 https://pbs.twimg.com/media/CUjETvDVAAI8LIy.jpg 1 Pembroke 0.822940 True Cardigan 1.770350e-01 True basenji 2.335260e-05 True
173 669006782128353280 https://pbs.twimg.com/media/CUjKHs0WIAECWP3.jpg 1 Chihuahua 0.127178 True Italian_greyhound 5.421470e-02 True pillow 4.859160e-02 False
174 669015743032369152 https://pbs.twimg.com/media/CUjSRNCXAAQ6Y_8.jpg 1 comic_book 0.275927 False bib 1.735160e-01 False jersey 7.391100e-02 False
175 669037058363662336 https://pbs.twimg.com/media/CUjlp51WcAA1vGA.jpg 1 Chihuahua 0.803528 True Pomeranian 5.387110e-02 True chow 3.225740e-02 True
176 669203728096960512 https://pbs.twimg.com/media/CUl9PGBVEAUV3Wz.jpg 1 pug 0.910452 True French_bulldog 5.508960e-02 True Chihuahua 1.489660e-02 True
177 669214165781868544 https://pbs.twimg.com/media/CUmGu7-UcAA0r3O.jpg 1 minivan 0.435396 False police_van 3.101430e-01 False minibus 6.820100e-02 False
178 669216679721873412 https://pbs.twimg.com/media/CUmJBS5WUAAKtrP.jpg 1 golden_retriever 0.992758 True Irish_setter 3.379040e-03 True Saluki 1.229630e-03 True
179 669324657376567296 https://pbs.twimg.com/media/CUnrN7vUcAAfGvN.jpg 1 seashore 0.201659 False Cardigan 1.315440e-01 True sandbar 1.014300e-01 False
180 669327207240699904 https://pbs.twimg.com/media/CUntin8WIAADmLk.jpg 1 golden_retriever 0.919584 True Labrador_retriever 4.966950e-02 True kuvasz 1.021610e-02 True
181 669328503091937280 https://pbs.twimg.com/media/CUnuuLEWEAAlKjN.jpg 1 Siberian_husky 0.424202 True Eskimo_dog 2.376600e-01 True malamute 5.257170e-02 True
182 669351434509529089 https://pbs.twimg.com/media/CUoDk8mWsAAMyBL.jpg 1 cuirass 0.756829 False breastplate 2.335200e-01 False bulletproof_vest 3.811880e-03 False
183 669353438988365824 https://pbs.twimg.com/media/CUoFZTyW4AE70iD.jpg 1 teddy 0.379656 False Pembroke 2.123430e-01 True chow 9.699530e-02 True
184 669354382627049472 https://pbs.twimg.com/media/CUoGQjdXAAAkaz2.jpg 1 Chihuahua 0.973990 True French_bulldog 1.083200e-02 True Pekinese 2.098650e-03 True
185 669359674819481600 https://pbs.twimg.com/media/CUoLEG3XAAE65I0.jpg 1 Labrador_retriever 0.367818 True German_short-haired_pointer 2.806420e-01 True Chesapeake_Bay_retriever 1.842460e-01 True
186 669363888236994561 https://pbs.twimg.com/media/CUoO1TLWsAA0Z3w.jpg 1 golden_retriever 0.539004 True Irish_setter 4.065500e-01 True cocker_spaniel 4.148440e-02 True
187 669367896104181761 https://pbs.twimg.com/media/CUoSjTnWwAANNak.jpg 1 basset 0.749394 True beagle 1.335790e-01 True Welsh_springer_spaniel 3.019840e-02 True
188 669371483794317312 https://pbs.twimg.com/media/CUoVz8rU8AAfW-c.jpg 1 Brabancon_griffon 0.483268 True miniature_pinscher 3.074650e-01 True redbone 7.052380e-02 True
189 669375718304980992 https://pbs.twimg.com/media/CUoZqaqWcAAA2MQ.jpg 1 Airedale 0.168762 True Norfolk_terrier 1.074790e-01 True Lakeland_terrier 9.784590e-02 True
190 669393256313184256 https://pbs.twimg.com/media/CUopnHPVEAAcL2o.jpg 1 cocker_spaniel 0.359843 True Blenheim_spaniel 1.395190e-01 True toy_poodle 1.327460e-01 True
191 669564461267722241 https://pbs.twimg.com/media/CUrFUvDVAAA9H-F.jpg 1 toy_poodle 0.623685 True miniature_poodle 2.599200e-01 True standard_poodle 8.252970e-02 True
192 669567591774625800 https://pbs.twimg.com/media/CUrIK1DWoAAhECq.jpg 1 Chihuahua 0.980511 True toy_terrier 9.166440e-03 True miniature_pinscher 2.658510e-03 True
193 669571471778410496 https://pbs.twimg.com/media/CUrLsI-UsAALfUL.jpg 1 minivan 0.873488 False pickup 4.125930e-02 False beach_wagon 1.540050e-02 False
194 669573570759163904 https://pbs.twimg.com/media/CUrNmtFWoAAnWCD.jpg 1 West_Highland_white_terrier 0.946828 True miniature_schnauzer 2.234360e-02 True cairn 9.461660e-03 True
195 669583744538451968 https://pbs.twimg.com/media/CUrW3DWXIAAiRqk.jpg 1 candle 0.174315 False lampshade 1.204070e-01 False plunger 7.209940e-02 False
196 669597912108789760 https://pbs.twimg.com/media/CUrjvxiVEAA94dH.jpg 1 Eskimo_dog 0.595665 True Siberian_husky 2.144740e-01 True white_wolf 1.472350e-01 False
197 669603084620980224 https://pbs.twimg.com/media/CUroc7QW4AATIff.jpg 1 Maltese_dog 0.659619 True Tibetan_terrier 1.935390e-01 True Shih-Tzu 3.932710e-02 True
198 669625907762618368 https://pbs.twimg.com/media/CUr9NjgU8AEpf5w.jpg 1 seat_belt 0.874502 False golden_retriever 5.540810e-02 True Labrador_retriever 2.685430e-02 True
199 669661792646373376 https://pbs.twimg.com/media/CUsd2TfWwAAmdjb.jpg 1 weasel 0.262802 False Siamese_cat 1.482630e-01 False hamster 1.163740e-01 False
200 669680153564442624 https://pbs.twimg.com/media/CUsuijgXAAE4pdi.jpg 1 dalmatian 0.141257 True borzoi 1.377440e-01 True Labrador_retriever 1.037920e-01 True
201 669682095984410625 https://pbs.twimg.com/media/CUswUBRUAAAahAo.jpg 1 Christmas_stocking 0.188397 False studio_couch 8.688670e-02 False bookcase 8.259860e-02 False
202 669683899023405056 https://pbs.twimg.com/media/CUsx8q_WUAA-m4k.jpg 1 Pomeranian 0.998275 True Chihuahua 6.054760e-04 True Pekinese 5.156880e-04 True
203 669749430875258880 https://pbs.twimg.com/media/CUttjYtWcAAdPgI.jpg 1 washbasin 0.245794 False toilet_seat 1.094200e-01 False paper_towel 1.056640e-01 False
204 669753178989142016 https://pbs.twimg.com/media/CUtw9SAVEAAtFUN.jpg 1 Pembroke 0.858494 True hamster 2.631880e-02 False Shetland_sheepdog 2.240520e-02 True
205 669923323644657664 https://pbs.twimg.com/media/CUwLtPeU8AAfAb2.jpg 1 car_mirror 0.343063 False seat_belt 1.102890e-01 False wing 8.014850e-02 False
206 669926384437997569 https://pbs.twimg.com/media/CUwOfnDWcAIXryP.jpg 1 Pomeranian 0.984231 True keeshond 1.023110e-02 True papillon 2.218970e-03 True
207 669942763794931712 https://pbs.twimg.com/media/CUwdYL5UsAAP0XX.jpg 1 vizsla 0.743216 True redbone 2.172820e-01 True Rhodesian_ridgeback 2.847350e-02 True
208 669970042633789440 https://pbs.twimg.com/media/CUw2MV4XIAAHLO_.jpg 1 miniature_pinscher 0.734744 True Rottweiler 1.310660e-01 True Doberman 8.150940e-02 True
209 669972011175813120 https://pbs.twimg.com/media/CUw3_QiUEAA8cT9.jpg 1 teddy 0.953071 False koala 7.026720e-03 False fur_coat 5.368170e-03 False
210 669993076832759809 https://pbs.twimg.com/media/CUxLJO8U8AAu6Zu.jpg 1 piggy_bank 0.176320 False hair_spray 9.748700e-02 False toy_poodle 8.650160e-02 True
211 670003130994700288 https://pbs.twimg.com/media/CUxUSuaW4AAdQzv.jpg 1 beagle 0.375313 True Saint_Bernard 1.749110e-01 True English_foxhound 1.158880e-01 True
212 670037189829525505 https://pbs.twimg.com/media/CUxzQ-nWIAAgJUm.jpg 1 pot 0.273767 False tray 9.288840e-02 False doormat 5.072790e-02 False
213 670040295598354432 https://pbs.twimg.com/media/CUx2F6lVEAAvFev.jpg 1 web_site 0.901552 False borzoi 2.665960e-02 True Chihuahua 1.243760e-02 True
214 670046952931721218 https://pbs.twimg.com/media/CUx8JSEXIAU6zPp.jpg 1 Blenheim_spaniel 0.998335 True beagle 6.472890e-04 True Brittany_spaniel 3.918660e-04 True
215 670055038660800512 https://pbs.twimg.com/media/CUyDgChWUAAmNSI.jpg 1 snail 0.563631 False slug 2.966490e-01 False bolete 3.183920e-02 False
216 670061506722140161 https://pbs.twimg.com/media/CUyJYk1WoAMPROb.jpg 1 Italian_greyhound 0.329339 True American_Staffordshire_terrier 3.052940e-01 True whippet 1.116860e-01 True
217 670069087419133954 https://pbs.twimg.com/media/CUyQRzHWoAAhF1D.jpg 1 boathouse 0.313829 False birdhouse 1.383310e-01 False ashcan 4.567320e-02 False
218 670073503555706880 https://pbs.twimg.com/media/CUyUSuWXIAAZKYF.jpg 1 malamute 0.601886 True Siberian_husky 3.401060e-01 True Eskimo_dog 5.004130e-02 True
219 670079681849372674 https://pbs.twimg.com/media/CUyZ6mVW4AI8YWZ.jpg 1 mud_turtle 0.157477 False terrapin 1.318460e-01 False box_turtle 6.067820e-02 False
220 670086499208155136 https://pbs.twimg.com/media/CUygHhFXAAAwNXv.jpg 1 German_short-haired_pointer 0.273492 True Staffordshire_bullterrier 1.329440e-01 True bluetick 1.245620e-01 True
221 670093938074779648 https://pbs.twimg.com/media/CUym4Y5WsAEiI9_.jpg 1 toy_poodle 0.383346 True miniature_poodle 1.536780e-01 True chow 1.385430e-01 True
222 670290420111441920 https://pbs.twimg.com/media/CU1Zgk7UcAAjw2t.jpg 1 Chihuahua 0.368876 True Pomeranian 2.821020e-01 True papillon 1.787950e-01 True
223 670303360680108032 https://pbs.twimg.com/media/CU1lWFaVAAAl0HG.jpg 1 Shetland_sheepdog 0.380278 True Cardigan 3.428060e-01 True guinea_pig 1.562490e-01 False
224 670319130621435904 https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg 1 Irish_terrier 0.254856 True briard 2.277160e-01 True soft-coated_wheaten_terrier 2.232630e-01 True
225 670338931251150849 https://pbs.twimg.com/media/CU2FsRnVAAA3TEg.jpg 1 cairn 0.245033 True West_Highland_white_terrier 1.377090e-01 True miniature_schnauzer 8.917250e-02 True
226 670361874861563904 https://pbs.twimg.com/media/CU2akCQWsAIbaOV.jpg 1 platypus 0.974075 False spotted_salamander 1.106760e-02 False bison 3.896910e-03 False
227 670374371102445568 https://pbs.twimg.com/media/CU2l7yvXAAUyYIJ.jpg 1 English_springer 0.974936 True English_setter 1.166130e-02 True cocker_spaniel 2.688990e-03 True
228 670385711116361728 https://pbs.twimg.com/media/CU2wPyWWUAAb1MJ.jpg 1 whippet 0.178027 True Chesapeake_Bay_retriever 1.059690e-01 True beagle 7.871970e-02 True
229 670403879788544000 https://pbs.twimg.com/media/CU3AxW1WoAA3_35.jpg 1 pug 0.802223 True French_bulldog 1.725570e-01 True bull_mastiff 7.162800e-03 True
230 670408998013820928 https://pbs.twimg.com/media/CU3FbQgVAAACdCQ.jpg 1 ping-pong_ball 0.999945 False tennis_ball 1.763430e-05 False racket 1.470730e-05 False
231 670411370698022913 https://pbs.twimg.com/media/CU3HlZtW4AAezbt.jpg 1 Maltese_dog 0.584397 True miniature_schnauzer 6.420080e-02 True toy_poodle 6.086770e-02 True
232 670417414769758208 https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg 1 sea_urchin 0.493257 False porcupine 4.605650e-01 False cardoon 8.145870e-03 False
233 670420569653809152 https://pbs.twimg.com/media/CU3P82RWEAAIVrE.jpg 1 bow_tie 0.268759 False cardigan 1.539570e-01 False wig 7.229490e-02 False
234 670421925039075328 https://pbs.twimg.com/media/CU3RLqfW4AE0pbA.jpg 1 Chihuahua 0.275793 True corn 7.359580e-02 False bolete 5.490510e-02 False
235 670427002554466305 https://pbs.twimg.com/media/CU3VzVwWwAAAsst.jpg 1 seat_belt 0.952258 False toy_terrier 3.887160e-02 True beagle 3.226440e-03 True
236 670428280563085312 https://pbs.twimg.com/media/CU3W9ELWEAEdUA0.jpg 1 chow 0.335269 True golden_retriever 3.058500e-01 True Tibetan_mastiff 6.332530e-02 True
237 670433248821026816 https://pbs.twimg.com/media/CU3be0SWEAEqb7I.jpg 1 window_shade 0.583427 False giant_schnauzer 6.221480e-02 True window_screen 3.994100e-02 False
238 670434127938719744 https://pbs.twimg.com/media/CU3cSG8W4AIAePH.jpg 1 jack-o'-lantern 0.919140 False Chesapeake_Bay_retriever 2.735100e-02 True Labrador_retriever 2.008090e-02 True
239 670435821946826752 https://pbs.twimg.com/media/CU3d0azWUAA38FD.jpg 1 sorrel 0.460370 False basenji 1.357670e-01 True Cardigan 9.917430e-02 True
240 670442337873600512 https://pbs.twimg.com/media/CU3jwAYWwAAhdAv.jpg 1 Sussex_spaniel 0.403552 True otterhound 2.563020e-01 True Irish_terrier 1.873150e-01 True
241 670444955656130560 https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg 1 English_springer 0.403698 True Brittany_spaniel 3.476090e-01 True Welsh_springer_spaniel 1.371860e-01 True
242 670449342516494336 https://pbs.twimg.com/media/CU3qHNTWsAApGr0.jpg 1 peacock 0.999924 False European_gallinule 2.987300e-05 False agama 2.150760e-05 False
243 670452855871037440 https://pbs.twimg.com/media/CU3tUC4WEAAoZby.jpg 1 Arctic_fox 0.188174 False indri 1.235840e-01 False malamute 8.037950e-02 True
244 670465786746662913 https://pbs.twimg.com/media/CU35E7VWEAAKYBy.jpg 1 axolotl 0.611558 False tailed_frog 1.864840e-01 False common_newt 7.869400e-02 False
245 670468609693655041 https://pbs.twimg.com/media/CU37pEoWUAAitje.jpg 1 minivan 0.730152 False beach_wagon 7.866140e-02 False car_wheel 6.434580e-02 False
246 670474236058800128 https://pbs.twimg.com/media/CU4AwqQWUAAEgE2.jpg 1 wool 0.070076 False siamang 6.253600e-02 False gorilla 5.889360e-02 False
247 670668383499735048 https://pbs.twimg.com/media/CU6xVkbWsAAeHeU.jpg 1 banana 0.107317 False orange 9.966220e-02 False bagel 8.903260e-02 False
248 670676092097810432 https://pbs.twimg.com/media/CU64WOlWcAA37TV.jpg 1 Dandie_Dinmont 0.676102 True West_Highland_white_terrier 4.082560e-02 True clumber 3.953330e-02 True
249 670679630144274432 https://pbs.twimg.com/media/CU67jGSUkAAk_1Y.jpg 1 Ibizan_hound 0.342734 True Brittany_spaniel 2.290650e-01 True Chihuahua 1.040290e-01 True
250 670691627984359425 https://pbs.twimg.com/media/CU7GehOUYAA9nn-.jpg 1 Shetland_sheepdog 0.071124 True home_theater 6.839780e-02 False American_Staffordshire_terrier 6.696390e-02 True
251 670704688707301377 https://pbs.twimg.com/media/CU7SW39WwAAL8Rw.jpg 1 Norwich_terrier 0.419838 True cairn 3.518760e-01 True Norfolk_terrier 5.109370e-02 True
252 670717338665226240 https://pbs.twimg.com/media/CU7d2vKUcAAFZyI.jpg 1 Pomeranian 0.368161 True Pekinese 3.509730e-01 True golden_retriever 1.149020e-01 True
253 670727704916926465 https://pbs.twimg.com/media/CU7nSZEW4AA6r5u.jpg 1 wood_rabbit 0.368562 False tabby 3.096750e-01 False Egyptian_cat 1.549140e-01 False
254 670733412878163972 https://pbs.twimg.com/media/CU7seitWwAArlVy.jpg 1 dhole 0.350416 False hare 2.366610e-01 False wood_rabbit 9.113280e-02 False
255 670755717859713024 https://pbs.twimg.com/media/CU8AwZ_UsAA-Lbu.jpg 1 keeshond 0.994065 True Norwegian_elkhound 1.827480e-03 True cairn 1.821310e-03 True
256 670764103623966721 https://pbs.twimg.com/media/CU8IY0pWIAA2AJ-.jpg 1 Norfolk_terrier 0.172850 True golden_retriever 7.270220e-02 True television 3.749420e-02 False
257 670778058496974848 https://pbs.twimg.com/media/CU8VFhuVAAAQW8B.jpg 1 pug 0.776612 True Brabancon_griffon 1.120320e-01 True boxer 3.905140e-02 True
258 670780561024270336 https://pbs.twimg.com/media/CU8XW2dWwAA-Lmc.jpg 1 Labrador_retriever 0.244889 True American_black_bear 5.699350e-02 False brown_bear 5.399260e-02 False
259 670782429121134593 https://pbs.twimg.com/media/CU8ZDu9WwAADg3N.jpg 1 Chihuahua 0.952963 True French_bulldog 3.657470e-02 True Boston_bull 1.977400e-03 True
260 670783437142401025 https://pbs.twimg.com/media/CU8Z-OxXAAA-sd2.jpg 1 lacewing 0.381955 False sulphur_butterfly 1.068100e-01 False leafhopper 6.834690e-02 False
261 670786190031921152 https://pbs.twimg.com/media/CU8ceuxWUAALMEo.jpg 1 dingo 0.777124 False Pembroke 1.274380e-01 True Cardigan 2.400660e-02 True
262 670789397210615808 https://pbs.twimg.com/media/CU8fZSQWoAEVp6O.jpg 1 beagle 0.295966 True basset 1.435270e-01 True bluetick 1.389920e-01 True
263 670792680469889025 https://pbs.twimg.com/media/CU8iYi2WsAEaqQ0.jpg 1 brown_bear 0.882426 False toy_poodle 3.135500e-02 True miniature_poodle 2.574340e-02 True
264 670797304698376195 https://pbs.twimg.com/media/CU8mlhoVAAAteS5.jpg 1 Pembroke 0.472197 True beagle 9.093800e-02 True German_shepherd 6.436600e-02 True
265 670803562457407488 https://pbs.twimg.com/media/CU8sSAvXIAAB1Py.jpg 1 basenji 0.344101 True Ibizan_hound 2.102820e-01 True toy_terrier 1.962790e-01 True
266 670804601705242624 https://pbs.twimg.com/media/CU8tOJZWUAAlNoF.jpg 1 Pomeranian 0.868560 True Pekinese 9.012920e-02 True chow 2.172210e-02 True
267 670807719151067136 https://pbs.twimg.com/media/CU8v-rdXIAId12Z.jpg 1 Old_English_sheepdog 0.958035 True Sealyham_terrier 1.389220e-02 True Border_collie 4.601140e-03 True
268 670811965569282048 https://pbs.twimg.com/media/CU8z65IUEAQBc4q.jpg 1 basset 0.994090 True Walker_hound 3.972680e-03 True beagle 1.406190e-03 True
269 670815497391357952 https://pbs.twimg.com/media/CU83IZ8W4AEIh4y.jpg 1 American_Staffordshire_terrier 0.919714 True Staffordshire_bullterrier 7.343020e-02 True bull_mastiff 9.056790e-04 True
270 670822709593571328 https://pbs.twimg.com/media/CU89schWIAIHQmA.jpg 1 web_site 0.993887 False Chihuahua 1.251520e-03 True menu 5.987510e-04 False
271 670823764196741120 https://pbs.twimg.com/media/CU8-puBWwAAR8Xl.jpg 1 Labrador_retriever 0.947453 True German_short-haired_pointer 1.700060e-02 True Weimaraner 1.543210e-02 True
272 670826280409919488 https://pbs.twimg.com/media/CU9A8ZuWsAAt_S1.jpg 1 scorpion 0.927956 False tarantula 2.163100e-02 False wolf_spider 1.483750e-02 False
273 670832455012716544 https://pbs.twimg.com/media/CU9GjzrUkAAWPh4.jpg 1 malinois 0.317607 True Norwegian_elkhound 2.749010e-01 True bathing_cap 1.146430e-01 False
274 670833812859932673 https://pbs.twimg.com/media/CU9HyzSWIAAVcte.jpg 1 Pekinese 0.609853 True Persian_cat 2.654420e-01 False Japanese_spaniel 2.746040e-02 True
275 670838202509447168 https://pbs.twimg.com/media/CU9LyIMWIAA6OOu.jpg 1 flamingo 0.992710 False coral_fungus 3.490810e-03 False stinkhorn 1.858950e-03 False
276 670840546554966016 https://pbs.twimg.com/media/CU9N6upXAAAbtQe.jpg 1 Shih-Tzu 0.963622 True Lhasa 1.601670e-02 True guinea_pig 7.931920e-03 False
277 670842764863651840 https://pbs.twimg.com/media/CU9P717W4AAOlKx.jpg 1 microphone 0.096063 False accordion 9.407470e-02 False drumstick 6.111280e-02 False
278 670995969505435648 https://pbs.twimg.com/media/CU_bRIEWcAAUVC7.jpg 1 redbone 0.866221 True beagle 6.119400e-02 True Rhodesian_ridgeback 2.428450e-02 True
279 671109016219725825 https://pbs.twimg.com/media/CVBCFkyU4AE2Wcr.jpg 1 basenji 0.855959 True beagle 3.672310e-02 True toy_terrier 2.925780e-02 True
280 671115716440031232 https://pbs.twimg.com/media/CVBILUgVAAA1ZUr.jpg 1 malinois 0.406341 True kelpie 1.433660e-01 True dingo 1.298020e-01 False
281 671122204919246848 https://pbs.twimg.com/media/CVBOFTLWwAAzlNi.jpg 1 goose 0.351957 False Chihuahua 1.012280e-01 True hen 6.581760e-02 False
282 671134062904504320 https://pbs.twimg.com/media/CVBY3e7XIAAAE4Y.jpg 1 Shih-Tzu 0.180380 True golden_retriever 1.801940e-01 True Labrador_retriever 1.736560e-01 True
283 671138694582165504 https://pbs.twimg.com/media/CVBdFahXAAAIe5Y.jpg 1 Samoyed 0.587342 True Great_Pyrenees 2.689520e-01 True Pekinese 9.052750e-02 True
284 671141549288370177 https://pbs.twimg.com/media/CVBfrU9WUAApDeV.jpg 1 guinea_pig 0.387728 False wood_rabbit 1.716810e-01 False borzoi 7.535770e-02 True
285 671147085991960577 https://pbs.twimg.com/media/CVBktzQXAAAPpUA.jpg 1 Yorkshire_terrier 0.467202 True cairn 4.401220e-01 True silky_terrier 5.869010e-02 True
286 671151324042559489 https://pbs.twimg.com/media/CVBokRSWsAADuXx.jpg 1 Rottweiler 0.781201 True black-and-tan_coonhound 6.120650e-02 True kelpie 4.885570e-02 True
287 671154572044468225 https://pbs.twimg.com/media/CVBrhXoWIAAox_C.jpg 1 Labrador_retriever 0.495047 True Chesapeake_Bay_retriever 3.501880e-01 True golden_retriever 1.424000e-01 True
288 671159727754231808 https://pbs.twimg.com/media/CVBwNjVWwAAlUFQ.jpg 1 pitcher 0.117446 False sunglasses 6.248650e-02 False mask 5.951670e-02 False
289 671163268581498880 https://pbs.twimg.com/media/CVBzbWsWsAEyNMA.jpg 1 African_hunting_dog 0.733025 False plow 1.193770e-01 False Scottish_deerhound 2.698290e-02 True
290 671166507850801152 https://pbs.twimg.com/media/CVB2TnWUYAA2pAU.jpg 1 refrigerator 0.829772 False toilet_seat 3.008330e-02 False shower_curtain 1.546070e-02 False
291 671182547775299584 https://pbs.twimg.com/media/CVCE9uYXIAEtSzR.jpg 1 Rottweiler 0.331179 True kelpie 2.186010e-01 True Appenzeller 1.825200e-01 True
292 671186162933985280 https://pbs.twimg.com/media/CVCIQX7UkAEzqh_.jpg 1 Chihuahua 0.319106 True whippet 1.691340e-01 True toy_terrier 1.258150e-01 True
293 671347597085433856 https://pbs.twimg.com/media/CVEbFDRWsAAkN_7.jpg 1 picket_fence 0.382918 False rain_barrel 1.088090e-01 False plastic_bag 3.887820e-02 False
294 671355857343524864 https://pbs.twimg.com/media/CVEilyCUwAETbJ-.jpg 1 miniature_poodle 0.313811 True toy_poodle 1.655850e-01 True Irish_terrier 5.609410e-02 True
295 671357843010908160 https://pbs.twimg.com/media/CVEkZaPXIAEw5vr.jpg 1 Italian_greyhound 0.831757 True toy_terrier 4.330580e-02 True Chihuahua 3.677300e-02 True
296 671362598324076544 https://pbs.twimg.com/media/CVEouDRXAAEe8mt.jpg 1 tub 0.393616 False bathtub 3.835220e-01 False swimming_trunks 7.730080e-02 False
297 671390180817915904 https://pbs.twimg.com/media/CVFBzpXVEAAHIOv.jpg 1 zebra 0.997673 False tiger 8.372680e-04 False prairie_chicken 5.745670e-04 False
298 671485057807351808 https://pbs.twimg.com/media/CVGYGNYXAAAQ9m-.jpg 1 Samoyed 0.627901 True Great_Pyrenees 2.764210e-01 True kuvasz 5.787350e-02 True
299 671486386088865792 https://pbs.twimg.com/media/CVGZTboUsAATohd.jpg 1 German_shepherd 0.827035 True kelpie 8.764770e-02 True red_wolf 3.121790e-02 False
300 671488513339211776 https://pbs.twimg.com/media/CVGbPgrWIAAQ1fB.jpg 1 hermit_crab 0.528761 False snail 1.856440e-01 False shower_curtain 6.636050e-02 False
301 671497587707535361 https://pbs.twimg.com/media/CVGjflNWoAEwgrQ.jpg 1 swing 0.089165 False paddle 8.074690e-02 False bathing_cap 6.569400e-02 False
302 671504605491109889 https://pbs.twimg.com/media/CVGp4LKWoAAoD03.jpg 1 toy_poodle 0.259115 True bath_towel 1.776690e-01 False Maltese_dog 7.171250e-02 True
303 671511350426865664 https://pbs.twimg.com/media/CVGwAh-W4AAIHJz.jpg 1 hermit_crab 0.625409 False tick 1.273330e-01 False snail 9.791590e-02 False
304 671518598289059840 https://pbs.twimg.com/media/CVG2l9jUYAAwg-w.jpg 1 Lakeland_terrier 0.428275 True wire-haired_fox_terrier 1.114720e-01 True toy_poodle 1.050160e-01 True
305 671520732782923777 https://pbs.twimg.com/media/CVG4i9UWEAAUH3U.jpg 1 Pomeranian 0.551031 True Pekinese 1.352620e-01 True gibbon 6.155740e-02 False
306 671528761649688577 https://pbs.twimg.com/media/CVG_2I-WIAASKSS.jpg 1 Doberman 0.782626 True black-and-tan_coonhound 1.096780e-01 True Gordon_setter 5.211020e-02 True
307 671533943490011136 https://pbs.twimg.com/media/CVHEju0XAAEUZRY.jpg 1 hen 0.556524 False cock 4.420330e-01 False black_swan 1.180750e-03 False
308 671536543010570240 https://pbs.twimg.com/media/CVHG6_AWwAEJf_u.jpg 1 pug 0.537652 True bull_mastiff 2.206170e-01 True French_bulldog 6.829650e-02 True
309 671538301157904385 https://pbs.twimg.com/media/CVHIhi2WsAEgdKk.jpg 1 park_bench 0.194211 False water_bottle 7.186960e-02 False beacon 5.343310e-02 False
310 671542985629241344 https://pbs.twimg.com/media/CVHMyHMWwAALYXs.jpg 1 Shetland_sheepdog 0.980339 True collie 6.693000e-03 True papillon 6.157010e-03 True
311 671544874165002241 https://pbs.twimg.com/media/CVHOgDvU4AAfrXD.jpg 1 feather_boa 0.240858 False wig 8.594620e-02 False wool 4.067350e-02 False
312 671547767500775424 https://pbs.twimg.com/media/CVHRIiqWEAAj98K.jpg 2 Loafer 0.255088 False platypus 9.001910e-02 False cowboy_boot 6.653600e-02 False
313 671561002136281088 https://pbs.twimg.com/media/CVHdK-7WwAAsuyc.jpg 1 Gordon_setter 0.469373 True black-and-tan_coonhound 2.708930e-01 True Rottweiler 1.532330e-01 True
314 671729906628341761 https://pbs.twimg.com/media/CVJ2yR2UwAAdCzU.jpg 1 kuvasz 0.431469 True Samoyed 1.171220e-01 True white_wolf 9.006660e-02 False
315 671735591348891648 https://pbs.twimg.com/media/CVJ79MzW4AEpTom.jpg 2 stone_wall 0.271121 False Irish_wolfhound 6.307820e-02 True poncho 4.822590e-02 False
316 671743150407421952 https://pbs.twimg.com/media/CVKC1IfWIAAsQks.jpg 1 toy_poodle 0.419427 True miniature_poodle 2.370670e-01 True swing 1.041930e-01 False
317 671744970634719232 https://pbs.twimg.com/media/CVKEfMKWoAAR-Ud.jpg 1 ice_bear 0.251193 False ram 2.138390e-01 False Arctic_fox 8.155140e-02 False
318 671763349865160704 https://pbs.twimg.com/media/CVKVM3NW4AAdi1e.jpg 1 prayer_rug 0.445334 False doormat 2.753110e-01 False bib 4.881320e-02 False
319 671768281401958400 https://pbs.twimg.com/media/CVKZsHtWwAA6gPj.jpg 2 Chihuahua 0.500373 True French_bulldog 1.127960e-01 True Italian_greyhound 6.289270e-02 True
320 671789708968640512 https://pbs.twimg.com/tweet_video_thumb/CVKtH-... 1 dalmatian 0.114259 True teddy 6.227520e-02 False steam_locomotive 4.970020e-02 False
321 671855973984772097 https://pbs.twimg.com/media/CVLpciDW4AAleh-.jpg 1 chimpanzee 0.636031 False gorilla 9.875150e-02 False fountain 3.175550e-02 False
322 671866342182637568 https://pbs.twimg.com/media/CVLy3zFWoAA93qJ.jpg 1 Labrador_retriever 0.875614 True Chihuahua 3.218220e-02 True golden_retriever 1.723250e-02 True
323 671874878652489728 https://pbs.twimg.com/media/CVL6op1WEAAUFE7.jpg 1 china_cabinet 0.996031 False entertainment_center 1.985890e-03 False bookcase 1.651810e-03 False
324 671879137494245376 https://pbs.twimg.com/media/CVL-goTWoAEUfhy.jpg 1 bee_eater 0.302648 False toucan 2.196460e-01 False chickadee 1.566870e-01 False
325 671882082306625538 https://pbs.twimg.com/media/CVMBL_LWUAAsvrL.jpg 1 ski_mask 0.968325 False mask 2.186270e-02 False abaya 5.479450e-03 False
326 671891728106971137 https://pbs.twimg.com/media/CVMJ9guXAAAhAiK.jpg 1 Labrador_retriever 0.567933 True golden_retriever 3.494010e-01 True seat_belt 6.939620e-02 False
327 671896809300709376 https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg 1 chow 0.243529 True hamster 2.271500e-01 False Pomeranian 5.605670e-02 True
328 672068090318987265 https://pbs.twimg.com/media/CVOqW8eUkAESTHj.jpg 1 pug 0.863385 True shopping_cart 1.257460e-01 False Border_terrier 2.972460e-03 True
329 672082170312290304 https://pbs.twimg.com/media/CVO3KodXAAAj1de.jpg 1 hamster 0.132440 False toy_poodle 1.239620e-01 True bubble 5.621240e-02 False
330 672095186491711488 https://pbs.twimg.com/media/CVPDAR9XIAAm8QB.jpg 1 pug 0.794087 True French_bulldog 1.407960e-01 True bull_mastiff 4.468110e-02 True
331 672125275208069120 https://pbs.twimg.com/media/CVPeX2dWwAEwyaR.jpg 1 tennis_ball 0.999834 False golden_retriever 8.675670e-05 True racket 5.332190e-05 False
332 672139350159835138 https://pbs.twimg.com/media/CVPrLE2WwAELCxD.jpg 1 Rottweiler 0.290992 True American_black_bear 2.381200e-01 False chimpanzee 1.155410e-01 False
333 672160042234327040 https://pbs.twimg.com/media/CVP9_beUEAAwURR.jpg 1 pug 0.561027 True French_bulldog 2.221140e-01 True Labrador_retriever 6.545560e-02 True
334 672169685991993344 https://pbs.twimg.com/media/CVQGv-vUwAEUjCj.jpg 1 cocker_spaniel 0.991011 True Sussex_spaniel 4.032130e-03 True miniature_poodle 1.275640e-03 True
335 672205392827572224 https://pbs.twimg.com/media/CVQnPMrVAAAzShR.jpg 1 carton 0.952613 False crate 3.537620e-02 False pug 3.266910e-03 True
336 672222792075620352 https://pbs.twimg.com/media/CVQ3EDdWIAINyhM.jpg 1 beagle 0.958178 True basset 9.117310e-03 True Italian_greyhound 7.731050e-03 True
337 672231046314901505 https://pbs.twimg.com/media/CVQ-kfWWoAAXV15.jpg 1 killer_whale 0.823919 False grey_whale 3.660060e-02 False hammerhead 2.952190e-02 False
338 672239279297454080 https://pbs.twimg.com/media/CVRGDrsWsAAUWSF.jpg 1 pug 0.332536 True French_bulldog 2.581240e-01 True bull_mastiff 1.208730e-01 True
339 672245253877968896 https://pbs.twimg.com/media/CVRLfeoW4AA_ldZ.jpg 1 Chihuahua 0.718944 True badger 1.785460e-01 False toy_terrier 3.710310e-02 True
340 672248013293752320 https://pbs.twimg.com/media/CVROAIfWsAECA5t.jpg 1 Irish_terrier 0.413173 True Airedale 3.356160e-01 True toy_poodle 2.795230e-02 True
341 672254177670729728 https://pbs.twimg.com/media/CVRTmz1WcAA4uMF.jpg 1 pug 0.979487 True French_bulldog 1.685040e-02 True Norwegian_elkhound 1.617540e-03 True
342 672256522047614977 https://pbs.twimg.com/media/CVRVvRMWEAIBKOP.jpg 1 ostrich 0.999004 False Arabian_camel 5.120290e-04 False llama 1.469420e-04 False
343 672264251789176834 https://pbs.twimg.com/media/CVRcxJ-WsAAXOhO.jpg 1 Chihuahua 0.609860 True teddy 6.813370e-02 False Norwich_terrier 5.922730e-02 True
344 672267570918129665 https://pbs.twimg.com/media/CVRfyZxWUAAFIQR.jpg 1 Irish_terrier 0.716932 True miniature_pinscher 5.123350e-02 True Airedale 4.438090e-02 True
345 672272411274932228 https://pbs.twimg.com/media/CVRkLuJWUAAhhYp.jpg 2 pug 0.914685 True Norwegian_elkhound 1.498190e-02 True Siamese_cat 9.220550e-03 False
346 672466075045466113 https://pbs.twimg.com/media/CVUUU_EWoAAxABV.jpg 1 cocker_spaniel 0.150424 True toy_poodle 8.860530e-02 True Welsh_springer_spaniel 7.201430e-02 True
347 672475084225949696 https://pbs.twimg.com/media/CVUchRHXAAE4rtp.jpg 1 terrapin 0.879286 False cockroach 4.525240e-02 False box_turtle 1.640380e-02 False
348 672481316919734272 https://pbs.twimg.com/media/CVUiMUeW4AEQgkU.jpg 1 Border_collie 0.599454 True collie 1.062270e-01 True Shetland_sheepdog 9.446490e-02 True
349 672482722825261057 https://pbs.twimg.com/media/CVUjd14W4AE8tvO.jpg 1 West_Highland_white_terrier 0.586173 True borzoi 2.066200e-01 True Great_Pyrenees 6.065270e-02 True
350 672488522314567680 https://pbs.twimg.com/media/CVUovvHWwAAD-nu.jpg 1 Doberman 0.605358 True Rottweiler 1.083820e-01 True Appenzeller 7.779770e-02 True
351 672523490734551040 https://pbs.twimg.com/media/CVVIjGbWwAAxkN0.jpg 1 golden_retriever 0.565981 True chow 8.121170e-02 True Irish_terrier 6.159600e-02 True
352 672538107540070400 https://pbs.twimg.com/media/CVVV1wJWoAEcOyk.jpg 1 Siamese_cat 0.383937 False Chihuahua 1.602740e-01 True giant_panda 1.477450e-01 False
353 672591271085670400 https://pbs.twimg.com/media/CVWGMQMWUAA7aOM.jpg 1 gondola 0.134290 False lifeboat 1.083560e-01 False bassinet 9.367890e-02 False
354 672591762242805761 https://pbs.twimg.com/media/CVWGotpXAAMRfGq.jpg 1 kuvasz 0.777659 True Great_Pyrenees 1.125170e-01 True golden_retriever 3.835090e-02 True
355 672594978741354496 https://pbs.twimg.com/media/CVWJkJXWsAInlZl.jpg 1 Great_Pyrenees 0.755945 True Old_English_sheepdog 8.233680e-02 True Afghan_hound 2.703660e-02 True
356 672604026190569472 https://pbs.twimg.com/media/CVWRyylWIAAMltv.jpg 1 toy_poodle 0.820158 True miniature_poodle 1.784040e-01 True toilet_tissue 2.911580e-04 False
357 672609152938721280 https://pbs.twimg.com/media/CVWWdKLWEAEnSk7.jpg 1 microwave 0.981946 False rotisserie 7.472450e-03 False television 5.880620e-03 False
358 672614745925664768 https://pbs.twimg.com/media/CVWbitUW4AAzclx.jpg 1 starfish 0.712717 False goldfish 2.588650e-01 False sea_cucumber 2.015430e-03 False
359 672622327801233409 https://pbs.twimg.com/media/CVWicBbUYAIomjC.jpg 1 golden_retriever 0.952773 True Labrador_retriever 1.083500e-02 True clumber 8.786010e-03 True
360 672640509974827008 https://pbs.twimg.com/media/CVWy9v-VAAALSoE.jpg 1 Chesapeake_Bay_retriever 0.420155 True Cardigan 2.660300e-01 True Labrador_retriever 4.251450e-02 True
361 672828477930868736 https://pbs.twimg.com/media/CVZd7ttWcAEs2wP.jpg 1 sandbar 0.118154 False stingray 7.591500e-02 False seashore 7.512480e-02 False
362 672834301050937345 https://pbs.twimg.com/media/CVZjOktVAAAtigw.jpg 1 Pembroke 0.582560 True Cardigan 2.588690e-01 True nipple 3.383450e-02 False
363 672877615439593473 https://pbs.twimg.com/media/CVaKn75XAAEU09u.jpg 1 Chihuahua 0.412362 True beagle 6.806610e-02 True borzoi 4.507120e-02 True
364 672884426393653248 https://pbs.twimg.com/media/CVaQ0M4UsAAki3t.jpg 1 tusker 0.122410 False warthog 1.198700e-01 False water_buffalo 1.058560e-01 False
365 672898206762672129 https://pbs.twimg.com/media/CVadWcCXIAAL4Sh.jpg 1 motor_scooter 0.835819 False bobsled 3.585630e-02 False moped 3.307900e-02 False
366 672902681409806336 https://pbs.twimg.com/media/CVahaz9XAAA8uTy.jpg 1 ram 0.374466 False bighorn 1.596210e-01 False Arabian_camel 1.119190e-01 False
367 672964561327235073 https://pbs.twimg.com/media/CVbZsouWUAIsxMc.jpg 1 Chihuahua 0.292343 True pug 1.733640e-01 True French_bulldog 4.550710e-02 True
368 672968025906282496 https://pbs.twimg.com/media/CVbc2V2WsAE3-kn.jpg 1 toy_poodle 0.678046 True miniature_poodle 1.602730e-01 True Airedale 6.564870e-02 True
369 672970152493887488 https://pbs.twimg.com/media/CVbeyGUU8AEq300.jpg 1 leaf_beetle 0.340154 False rhinoceros_beetle 1.396980e-01 False crayfish 5.803360e-02 False
370 672975131468300288 https://pbs.twimg.com/media/CVbjRSIWsAElw2s.jpg 1 pug 0.836421 True Brabancon_griffon 4.466780e-02 True French_bulldog 3.657050e-02 True
371 672980819271634944 https://pbs.twimg.com/media/CVbodBOUsAAb7jZ.jpg 1 car_mirror 0.232754 False basset 2.194610e-01 True beagle 1.123970e-01 True
372 672984142909456390 https://pbs.twimg.com/media/CVbrcZyVAAA5Wpq.jpg 1 wombat 0.738780 False beaver 1.333680e-01 False wallaby 3.237010e-02 False
373 672988786805112832 https://pbs.twimg.com/media/CVbvjKqW4AA_CuD.jpg 1 Lakeland_terrier 0.836632 True West_Highland_white_terrier 7.389960e-02 True wire-haired_fox_terrier 3.816010e-02 True
374 672995267319328768 https://pbs.twimg.com/media/CVb1mRiWcAADBsE.jpg 1 French_bulldog 0.719559 True boxer 1.669270e-01 True Boston_bull 1.013540e-01 True
375 672997845381865473 https://pbs.twimg.com/media/CVb39_1XIAAMoIv.jpg 1 chow 0.517255 True Pomeranian 2.060530e-01 True koala 1.270370e-01 False
376 673148804208660480 https://pbs.twimg.com/media/CVeBQwiUsAAqhLw.jpg 1 tub 0.873010 False bathtub 9.143410e-02 False toilet_seat 2.545630e-02 False
377 673213039743795200 https://pbs.twimg.com/media/CVe7r7QVEAAc4Bg.jpg 1 schipperke 0.888082 True groenendael 4.772740e-02 True kelpie 4.139800e-02 True
378 673240798075449344 https://pbs.twimg.com/media/CVfU7KLXAAAAgIa.jpg 1 Airedale 0.443004 True brown_bear 1.141620e-01 False Chesapeake_Bay_retriever 9.463860e-02 True
379 673270968295534593 https://pbs.twimg.com/media/CVfwXuWWIAAqnoi.jpg 1 Shih-Tzu 0.610453 True Maltese_dog 1.668150e-01 True Old_English_sheepdog 1.320150e-01 True
380 673295268553605120 https://pbs.twimg.com/media/CVgGc9hWIAIe1bn.jpg 1 golden_retriever 0.889241 True Labrador_retriever 6.468330e-02 True Great_Pyrenees 1.261260e-02 True
381 673317986296586240 https://pbs.twimg.com/media/CVgbIobUYAEaeI3.jpg 2 miniature_pinscher 0.384099 True bloodhound 7.992320e-02 True Rottweiler 6.859410e-02 True
382 673320132811366400 https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg 3 Samoyed 0.978833 True Pomeranian 1.276300e-02 True Eskimo_dog 1.853050e-03 True
383 673342308415348736 https://pbs.twimg.com/media/CVgxQc5XIAAYL0W.jpg 1 ski_mask 0.981017 False Chihuahua 1.355920e-02 True kelpie 6.521800e-04 True
384 673343217010679808 https://pbs.twimg.com/media/CVgyFSyU4AA9p1e.jpg 1 Chihuahua 0.541408 True Italian_greyhound 1.568910e-01 True miniature_pinscher 6.955580e-02 True
385 673345638550134785 https://pbs.twimg.com/media/CVg0SVRWEAAsBrS.jpg 1 hamster 0.761025 False weasel 6.936170e-02 False Pomeranian 6.462700e-02 True
386 673350198937153538 https://pbs.twimg.com/media/CVg4bo8WEAANEEE.jpg 1 West_Highland_white_terrier 0.119188 True quill 1.040140e-01 False Maltese_dog 9.394400e-02 True
387 673352124999274496 https://pbs.twimg.com/media/CVg6L2hWIAAYuEb.jpg 1 golden_retriever 0.672808 True Labrador_retriever 2.758850e-01 True kuvasz 2.225500e-02 True
388 673355879178194945 https://pbs.twimg.com/media/CVg9mTYWIAAu7J6.jpg 1 Rottweiler 0.529248 True miniature_pinscher 1.682960e-01 True Appenzeller 1.004520e-01 True
389 673359818736984064 https://pbs.twimg.com/media/CVhBLohWEAAXtYl.jpg 1 English_setter 0.696568 True Brittany_spaniel 1.040460e-01 True Ibizan_hound 3.483250e-02 True
390 673363615379013632 https://pbs.twimg.com/media/CVhEoq4WcAE8pBm.jpg 1 ox 0.193431 False warthog 1.238270e-01 False bison 1.111770e-01 False
391 673576835670777856 https://pbs.twimg.com/media/CVkGjsxU8AA5OYX.jpg 1 teddy 0.255210 False Christmas_stocking 9.828520e-02 False pajama 7.273510e-02 False
392 673580926094458881 https://pbs.twimg.com/media/CVkKRqOXIAEX83-.jpg 1 beagle 0.985062 True basset 6.417840e-03 True Walker_hound 3.532590e-03 True
393 673583129559498752 https://pbs.twimg.com/media/CVkMRUeWsAA9bMh.jpg 1 Arctic_fox 0.153271 False golden_retriever 1.139460e-01 True borzoi 1.107180e-01 True
394 673612854080196609 https://pbs.twimg.com/media/CVknUTlVEAARjU5.jpg 1 Newfoundland 0.223101 True Leonberg 1.111060e-01 True shovel 8.562630e-02 False
395 673636718965334016 https://pbs.twimg.com/media/CVk9ApFWUAA-S1s.jpg 1 wombat 0.880257 False corn 1.942070e-02 False pug 1.904430e-02 True
396 673656262056419329 https://pbs.twimg.com/media/CVlOy3pW4AQ9H1K.jpg 1 bull_mastiff 0.700625 True Rhodesian_ridgeback 9.469770e-02 True Brabancon_griffon 5.755940e-02 True
397 673662677122719744 https://pbs.twimg.com/media/CVlUfBbUwAQyfcD.jpg 1 Labrador_retriever 0.957670 True beagle 1.241270e-02 True golden_retriever 5.689130e-03 True
398 673680198160809984 https://pbs.twimg.com/media/CVlkid8WoAAqDlB.jpg 1 Samoyed 0.989853 True Arctic_fox 3.343750e-03 False chow 2.801720e-03 True
399 673686845050527744 https://pbs.twimg.com/media/CVlqi_AXIAASlcD.jpg 1 Pekinese 0.185903 True guinea_pig 1.729510e-01 False pug 1.661830e-01 True
400 673688752737402881 https://pbs.twimg.com/media/CVlsVs3WIAAja6m.jpg 1 soft-coated_wheaten_terrier 0.340806 True Sealyham_terrier 2.348980e-01 True kuvasz 2.034950e-01 True
401 673689733134946305 https://pbs.twimg.com/media/CVltNgxWEAA5sCJ.jpg 1 Chesapeake_Bay_retriever 0.382220 True American_Staffordshire_terrier 3.501400e-01 True seat_belt 9.887390e-02 False
402 673697980713705472 https://pbs.twimg.com/media/CVl0vFeWoAAMTfg.jpg 1 porcupine 0.151876 False hen 1.113800e-01 False doormat 5.893370e-02 False
403 673700254269775872 https://pbs.twimg.com/media/CVl2ydUWsAA1jD6.jpg 1 water_bottle 0.614536 False ashcan 5.091140e-02 False bucket 3.743190e-02 False
404 673705679337693185 https://pbs.twimg.com/media/CVl7u00WcAAufzR.jpg 1 Shih-Tzu 0.165383 True Lhasa 1.169770e-01 True Yorkshire_terrier 6.389890e-02 True
405 673707060090052608 https://pbs.twimg.com/media/CVl8_EPWoAAcuSC.jpg 1 German_short-haired_pointer 0.935771 True kelpie 2.256100e-02 True Labrador_retriever 8.846650e-03 True
406 673708611235921920 https://pbs.twimg.com/media/CVl-Z0dWcAAs7wr.jpg 1 golden_retriever 0.936333 True cocker_spaniel 2.421090e-02 True Labrador_retriever 9.434850e-03 True
407 673709992831262724 https://pbs.twimg.com/media/CVl_qbjW4AA8Mam.jpg 1 Chihuahua 0.330171 True Siamese_cat 1.815800e-01 False kelpie 1.782270e-01 True
408 673711475735838725 https://pbs.twimg.com/media/CVmA_osW4AArAU1.jpg 1 Maltese_dog 0.607401 True toy_poodle 1.438360e-01 True Sealyham_terrier 6.390700e-02 True
409 673715861853720576 https://pbs.twimg.com/media/CVmE_fAWIAAlDhU.jpg 1 suit 0.404115 False bow_tie 2.946830e-01 False Windsor_tie 1.327010e-01 False
410 673887867907739649 https://pbs.twimg.com/media/CVoha_IU4AAZ7vi.jpg 2 Brabancon_griffon 0.216767 True Chihuahua 1.909580e-01 True golden_retriever 1.632880e-01 True
411 673906403526995968 https://pbs.twimg.com/media/CVoySqoWUAAWb7N.jpg 1 toilet_seat 0.683319 False soft-coated_wheaten_terrier 4.892770e-02 True Siberian_husky 3.038600e-02 True
412 673919437611909120 https://pbs.twimg.com/media/CVo-JuMWwAAet6F.jpg 1 jack-o'-lantern 0.172079 False schipperke 1.159840e-01 True miniature_pinscher 5.217500e-02 True
413 673956914389192708 https://pbs.twimg.com/media/CVpgPGwWoAEV7gG.jpg 1 pug 0.586161 True Brabancon_griffon 8.274370e-02 True Chihuahua 4.587770e-02 True
414 674008982932058114 https://pbs.twimg.com/media/CVqPkVoU4AAkXA7.jpg 1 jigsaw_puzzle 0.970810 False prayer_rug 1.104820e-02 False quill 8.431710e-03 False
415 674014384960745472 https://pbs.twimg.com/media/CVqUgTIUAAUA8Jr.jpg 1 Pembroke 0.742320 True Cardigan 8.493710e-02 True Eskimo_dog 6.832090e-02 True
416 674019345211760640 https://pbs.twimg.com/media/CVqZBO8WUAAd931.jpg 1 collie 0.992732 True borzoi 5.042900e-03 True Shetland_sheepdog 1.724780e-03 True
417 674024893172875264 https://pbs.twimg.com/media/CVqeEKLW4AA1wXH.jpg 1 Pomeranian 0.648500 True Pekinese 3.398350e-01 True Persian_cat 6.448460e-03 False
418 674036086168010753 https://pbs.twimg.com/media/CVqoPslWEAEk7EC.jpg 1 toy_poodle 0.685617 True miniature_poodle 1.519360e-01 True Maltese_dog 4.553110e-02 True
419 674038233588723717 https://pbs.twimg.com/media/CVqqMtiVEAEye_L.jpg 1 Eskimo_dog 0.358459 True Norwegian_elkhound 2.069630e-01 True malamute 1.482360e-01 True
420 674042553264685056 https://pbs.twimg.com/media/CVquIDRW4AEJrPk.jpg 1 toy_poodle 0.927975 True miniature_poodle 6.894640e-02 True standard_poodle 1.315750e-03 True
421 674045139690631169 https://pbs.twimg.com/media/CVqwedgXIAEAT6A.jpg 1 robin 0.369661 False rhinoceros_beetle 1.106070e-01 False European_fire_salamander 4.317820e-02 False
422 674051556661161984 https://pbs.twimg.com/media/CVq2UHwWEAAduMw.jpg 1 Shih-Tzu 0.179777 True badger 1.605800e-01 False three-toed_sloth 1.321540e-01 False
423 674053186244734976 https://pbs.twimg.com/media/CVq3zAaWwAA8vpk.jpg 1 Cardigan 0.984725 True Pembroke 8.730390e-03 True kelpie 2.194770e-03 True
424 674063288070742018 https://pbs.twimg.com/media/CVrA-rIWEAANxwQ.jpg 1 ostrich 0.661176 False bearskin 2.148790e-01 False swab 6.445570e-02 False
425 674075285688614912 https://pbs.twimg.com/media/CVrL5YBWoAA_uPD.jpg 1 Airedale 0.305392 True Kerry_blue_terrier 2.500140e-01 True Lakeland_terrier 1.886680e-01 True
426 674082852460433408 https://pbs.twimg.com/media/CVrSxy7WsAAFD2F.jpg 1 Pomeranian 0.666957 True Shetland_sheepdog 2.801940e-02 True ski_mask 2.068270e-02 False
427 674255168825880576 https://pbs.twimg.com/media/CVtvf6bWwAAd1rT.jpg 1 Eskimo_dog 0.615741 True Siberian_husky 1.995440e-01 True malamute 1.791070e-01 True
428 674262580978937856 https://pbs.twimg.com/media/CVt2PawWIAEUkqW.jpg 1 Greater_Swiss_Mountain_dog 0.519428 True boxer 1.215000e-01 True Staffordshire_bullterrier 1.144980e-01 True
429 674265582246694913 https://pbs.twimg.com/media/CVt49k_WsAAtNYC.jpg 1 slug 0.998075 False ice_lolly 9.840100e-04 False leafhopper 9.720380e-05 False
430 674269164442398721 https://pbs.twimg.com/media/CVt8OmIWIAAbxvJ.jpg 1 pug 0.622921 True Norwegian_elkhound 4.865850e-02 True Cardigan 1.696550e-02 True
431 674271431610523648 https://pbs.twimg.com/media/CVt-SeMWwAAs9HH.jpg 1 German_shepherd 0.991454 True malinois 4.150230e-03 True bloodhound 3.019130e-03 True
432 674291837063053312 https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg 1 Cardigan 0.611525 True Pembroke 3.685660e-01 True Chihuahua 3.329570e-03 True
433 674318007229923329 https://pbs.twimg.com/media/CVuopr8WwAExw_T.jpg 1 porcupine 0.846628 False hamster 3.813610e-02 False echidna 1.468040e-02 False
434 674372068062928900 https://pbs.twimg.com/media/CVvZ0KTWwAAdXKV.jpg 1 seashore 0.346126 False American_alligator 1.064040e-01 False sandbar 4.934910e-02 False
435 674394782723014656 https://pbs.twimg.com/media/CVvueeeWwAUcQLR.jpg 1 toilet_tissue 0.134983 False mosquito_net 1.332470e-01 False Lakeland_terrier 1.090990e-01 True
436 674410619106390016 https://pbs.twimg.com/media/CVv84VDUEAEm3dW.jpg 1 brown_bear 0.698207 False sea_lion 4.647450e-02 False beagle 1.942680e-02 True
437 674416750885273600 https://pbs.twimg.com/media/CVwCdCFW4AUHY4D.jpg 1 Chihuahua 0.287201 True Boston_bull 2.509200e-01 True whippet 1.410120e-01 True
438 674422304705744896 https://pbs.twimg.com/media/CVwHgblWcAACWOD.jpg 1 golden_retriever 0.964497 True Labrador_retriever 9.006180e-03 True tennis_ball 7.138830e-03 False
439 674436901579923456 https://pbs.twimg.com/media/CVwUyM9WwAAGDjv.jpg 1 acorn_squash 0.375392 False Shih-Tzu 1.054160e-01 True Lhasa 7.283230e-02 True
440 674447403907457024 https://pbs.twimg.com/media/CVweVUfW4AACPwI.jpg 1 Brabancon_griffon 0.409909 True malinois 2.446490e-01 True bull_mastiff 7.481950e-02 True
441 674468880899788800 https://pbs.twimg.com/media/CVwx3dQXAAA0ksL.jpg 2 chow 0.526230 True Pomeranian 2.836470e-01 True toy_poodle 6.766540e-02 True
442 674632714662858753 https://pbs.twimg.com/media/CVzG3yOVAAAqi9I.jpg 1 jellyfish 0.432748 False goldfish 1.131110e-01 False coral_reef 8.704720e-02 False
443 674638615994089473 https://pbs.twimg.com/media/CVzMPh1UsAELQ_p.jpg 1 Pomeranian 0.846986 True chow 1.420140e-01 True keeshond 2.605040e-03 True
444 674644256330530816 https://pbs.twimg.com/media/CVzRXmXWIAA0Fkr.jpg 1 soccer_ball 0.398102 False basset 3.356920e-01 True cocker_spaniel 7.294080e-02 True
445 674646392044941312 https://pbs.twimg.com/media/CVzTUGrW4AAirJH.jpg 1 flat-coated_retriever 0.837448 True groenendael 8.616650e-02 True Labrador_retriever 1.605220e-02 True
446 674664755118911488 https://pbs.twimg.com/media/CVzkA7-WsAAcXz6.jpg 1 African_crocodile 0.330625 False American_alligator 7.535570e-02 False mink 5.748070e-02 False
447 674670581682434048 https://pbs.twimg.com/media/CVzpUGUWUAAo7Vn.jpg 1 malamute 0.180079 True Eskimo_dog 1.780330e-01 True Siberian_husky 7.796610e-02 True
448 674690135443775488 https://pbs.twimg.com/media/CVz7FxXWUAAlTRP.jpg 1 tick 0.242538 False nail 2.125890e-01 False screw 1.728380e-01 False
449 674737130913071104 https://pbs.twimg.com/media/CV0l10AU8AAfg-a.jpg 1 Pomeranian 0.948537 True schipperke 1.430990e-02 True Chihuahua 8.120240e-03 True
450 674739953134403584 https://pbs.twimg.com/media/CV0oaHFW4AA9Coi.jpg 1 Dandie_Dinmont 0.175915 True black-footed_ferret 9.653430e-02 False toy_poodle 6.414470e-02 True
451 674743008475090944 https://pbs.twimg.com/media/CV0rL7RWEAAbhqm.jpg 1 Bernese_mountain_dog 0.583054 True Shetland_sheepdog 6.599040e-02 True Greater_Swiss_Mountain_dog 6.523620e-02 True
452 674752233200820224 https://pbs.twimg.com/media/CV0zkzEU4AAzLc5.jpg 2 vizsla 0.665516 True redbone 1.733660e-01 True basset 1.347830e-01 True
453 674754018082705410 https://pbs.twimg.com/media/CV01M3ZWIAAV7rv.jpg 1 seashore 0.352321 False promontory 1.317530e-01 False wreck 9.559670e-02 False
454 674764817387900928 https://pbs.twimg.com/media/CV0_BSuWIAIvE9k.jpg 2 Samoyed 0.634695 True Arctic_fox 3.098530e-01 False kuvasz 1.964100e-02 True
455 674767892831932416 https://pbs.twimg.com/media/CV1B0WkWwAEBKVx.jpg 1 shower_curtain 0.238855 False sarong 9.241410e-02 False kimono 5.641250e-02 False
456 674774481756377088 https://pbs.twimg.com/media/CV1HztsWoAAuZwo.jpg 1 Chihuahua 0.407016 True French_bulldog 3.099780e-01 True Siamese_cat 2.276770e-01 False
457 674781762103414784 https://pbs.twimg.com/media/CV1ObvEWcAA7c6i.jpg 1 ocarina 0.148975 False hamster 6.898490e-02 False wool 3.172850e-02 False
458 674788554665512960 https://pbs.twimg.com/media/CV1Um8vWIAAmhQn.jpg 1 miniature_poodle 0.349561 True toy_poodle 1.547110e-01 True Maltese_dog 1.342290e-01 True
459 674790488185167872 https://pbs.twimg.com/media/CV1WXsmWcAAgQ56.jpg 1 Labrador_retriever 0.801903 True Chesapeake_Bay_retriever 1.935750e-01 True Rottweiler 1.193050e-03 True
460 674793399141146624 https://pbs.twimg.com/media/CV1ZA3oWEAA1HW_.jpg 1 giant_schnauzer 0.119693 True Afghan_hound 7.276270e-02 True miniature_schnauzer 6.378590e-02 True
461 674800520222154752 https://pbs.twimg.com/media/CV1ffl3XAAAiFyr.jpg 1 Pembroke 0.876479 True Cardigan 9.691140e-02 True dingo 9.195670e-03 False
462 674805413498527744 https://pbs.twimg.com/ext_tw_video_thumb/67480... 1 English_springer 0.594467 True cocker_spaniel 3.899940e-01 True Welsh_springer_spaniel 7.096110e-03 True
463 674999807681908736 https://pbs.twimg.com/media/CV4UvgNUkAEEnZd.jpg 1 Rottweiler 0.591829 True Doberman 2.045440e-01 True black-and-tan_coonhound 7.860190e-02 True
464 675003128568291329 https://pbs.twimg.com/media/CV4XwYiWoAAHQIF.jpg 1 Pembroke 0.655279 True Pomeranian 1.041640e-01 True Cardigan 5.281770e-02 True
465 675006312288268288 https://pbs.twimg.com/media/CV4aqCwWsAIi3OP.jpg 1 boxer 0.654697 True space_heater 4.338880e-02 False beagle 4.284760e-02 True
466 675015141583413248 https://pbs.twimg.com/media/CV4iqh5WcAEV1E6.jpg 1 street_sign 0.290091 False golden_retriever 2.583720e-01 True sandbar 1.321730e-01 False
467 675047298674663426 https://pbs.twimg.com/media/CV4_8FgXAAQOj4S.jpg 1 Samoyed 0.978007 True chow 7.121240e-03 True Pomeranian 6.397830e-03 True
468 675109292475830276 https://pbs.twimg.com/media/CV54UQTXAAAGf-j.jpg 1 dalmatian 0.989519 True English_setter 5.257670e-03 True German_short-haired_pointer 1.442830e-03 True
469 675111688094527488 https://pbs.twimg.com/media/CV56f54WsAEv4kJ.jpg 1 Labrador_retriever 0.631501 True Brittany_spaniel 1.019270e-01 True Chesapeake_Bay_retriever 6.264980e-02 True
470 675113801096802304 https://pbs.twimg.com/media/CV58a4nXAAApywo.jpg 1 bow 0.168020 False quill 1.088070e-01 False joystick 4.331180e-02 False
471 675135153782571009 https://pbs.twimg.com/media/CV6P1lnWIAAUQHk.jpg 1 stove 0.587507 False rotisserie 5.171310e-02 False microwave 2.072530e-02 False
472 675145476954566656 https://pbs.twimg.com/media/CV6ZOPqWsAA20Uj.jpg 1 Labrador_retriever 0.458746 True Great_Dane 2.355040e-01 True Staffordshire_bullterrier 1.168640e-01 True
473 675146535592706048 https://pbs.twimg.com/media/CV6aMToXIAA7kH4.jpg 1 dingo 0.288447 False Cardigan 2.299440e-01 True Pembroke 1.904070e-01 True
474 675147105808306176 https://pbs.twimg.com/media/CV6atgoWcAEsdv6.jpg 1 golden_retriever 0.949215 True Labrador_retriever 1.676540e-02 True flat-coated_retriever 1.063730e-02 True
475 675149409102012420 https://pbs.twimg.com/media/CV6czeEWEAEdChp.jpg 1 chow 0.999876 True Tibetan_mastiff 5.867490e-05 True Tibetan_terrier 2.877850e-05 True
476 675153376133427200 https://pbs.twimg.com/media/CV6gaUUWEAAnETq.jpg 1 paper_towel 0.327957 False mailbox 9.602690e-02 False seat_belt 3.499510e-02 False
477 675166823650848770 https://pbs.twimg.com/media/CV6spB7XAAIpMyP.jpg 1 llama 0.284394 False standard_poodle 1.325690e-01 True teddy 1.279750e-01 False
478 675334060156301312 https://pbs.twimg.com/media/CV9EvZNUwAAgLCK.jpg 2 Pembroke 0.773135 True Cardigan 1.168100e-01 True chow 3.903620e-02 True
479 675349384339542016 https://pbs.twimg.com/media/CV9SrABU4AQI46z.jpg 3 borzoi 0.866367 True Saluki 1.220790e-01 True Irish_wolfhound 4.019720e-03 True
480 675354435921575936 https://pbs.twimg.com/ext_tw_video_thumb/67535... 1 upright 0.303415 False golden_retriever 1.813510e-01 True Brittany_spaniel 1.620840e-01 True
481 675362609739206656 https://pbs.twimg.com/media/CV9etctWUAAl5Hp.jpg 1 Labrador_retriever 0.479008 True ice_bear 2.182890e-01 False kuvasz 1.399110e-01 True
482 675372240448454658 https://pbs.twimg.com/media/CV9nd30XAAAEba5.jpg 1 Chihuahua 0.416385 True West_Highland_white_terrier 1.029330e-01 True Samoyed 8.729950e-02 True
483 675432746517426176 https://pbs.twimg.com/media/CV-ef64WoAAbh0I.jpg 1 Labrador_retriever 0.986548 True golden_retriever 8.861850e-03 True Chihuahua 6.935280e-04 True
484 675483430902214656 https://pbs.twimg.com/media/CV_MmGZU8AAggM6.jpg 1 box_turtle 0.543706 False terrapin 2.026000e-01 False loggerhead 7.112150e-02 False
485 675489971617296384 https://pbs.twimg.com/media/CV_SimUWoAAvJSY.jpg 1 West_Highland_white_terrier 0.139613 True seat_belt 1.186470e-01 False Old_English_sheepdog 9.395220e-02 True
486 675497103322386432 https://pbs.twimg.com/media/CV_ZAhcUkAUeKtZ.jpg 1 vizsla 0.519589 True miniature_pinscher 6.477120e-02 True Rhodesian_ridgeback 6.149130e-02 True
487 675501075957489664 https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg 1 dough 0.806757 False bakery 2.790660e-02 False French_loaf 1.818890e-02 False
488 675517828909424640 https://pbs.twimg.com/media/CV_r3v4VAAALvwg.jpg 1 Scottish_deerhound 0.240591 True groenendael 1.569160e-01 True flat-coated_retriever 9.089940e-02 True
489 675522403582218240 https://pbs.twimg.com/media/CV_wCh8W4AEWWZ9.jpg 1 cocker_spaniel 0.299708 True golden_retriever 2.636650e-01 True Irish_setter 8.032330e-02 True
490 675531475945709568 https://pbs.twimg.com/media/CV_4ShmUYAA3wNu.jpg 1 Pembroke 0.918441 True Cardigan 2.733950e-02 True Siberian_husky 2.022100e-02 True
491 675534494439489536 https://pbs.twimg.com/media/CV_7CV6XIAEV05u.jpg 1 chow 0.749368 True schipperke 1.337380e-01 True Newfoundland 4.991380e-02 True
492 675706639471788032 https://pbs.twimg.com/media/CWCXj35VEAIFvtk.jpg 1 English_springer 0.990300 True Welsh_springer_spaniel 2.079910e-03 True cocker_spaniel 2.013780e-03 True
493 675707330206547968 https://pbs.twimg.com/media/CWCYOqWUAAARmGr.jpg 1 bath_towel 0.721933 False Staffordshire_bullterrier 5.934420e-02 True bagel 3.570160e-02 False
494 675710890956750848 https://pbs.twimg.com/media/CWCbd8ZWoAAtqoH.jpg 2 standard_schnauzer 0.441427 True miniature_schnauzer 2.488850e-01 True Sealyham_terrier 1.649670e-01 True
495 675740360753160193 https://pbs.twimg.com/ext_tw_video_thumb/67574... 1 golden_retriever 0.800495 True kuvasz 9.775640e-02 True Saluki 6.841460e-02 True
496 675781562965868544 https://pbs.twimg.com/media/CWDbv2yU4AARfeH.jpg 1 Maltese_dog 0.921968 True West_Highland_white_terrier 1.781070e-02 True toy_poodle 1.355540e-02 True
497 675798442703122432 https://pbs.twimg.com/media/CWDrGH4UYAARoq_.jpg 1 beagle 0.681218 True basset 1.251210e-01 True boxer 8.039820e-02 True
498 675820929667219457 https://pbs.twimg.com/media/CWD_jQMWEAAdYwH.jpg 1 basset 0.556373 True beagle 2.016750e-01 True bloodhound 1.108480e-01 True
499 675822767435051008 https://pbs.twimg.com/media/CWEBOFYWwAA-O2c.jpg 1 Pomeranian 0.460710 True chow 2.027650e-01 True Pekinese 1.332660e-01 True
500 675845657354215424 https://pbs.twimg.com/media/CWEWClfW4AAnqhG.jpg 1 pug 0.883952 True Boston_bull 1.105680e-02 True French_bulldog 9.839810e-03 True
501 675853064436391936 https://pbs.twimg.com/media/CWEcxqWVEAAHyGH.jpg 1 Labrador_retriever 0.868367 True golden_retriever 4.330460e-02 True vizsla 2.820720e-02 True
502 675870721063669760 https://pbs.twimg.com/media/CWEs1b-WEAEhq82.jpg 1 golden_retriever 0.263892 True Welsh_springer_spaniel 1.841930e-01 True beagle 1.822410e-01 True
503 675878199931371520 https://pbs.twimg.com/media/CWEzo19WoAEiOCj.jpg 1 wood_rabbit 0.785756 False hare 1.181810e-01 False Cardigan 4.362710e-02 True
504 675888385639251968 https://pbs.twimg.com/media/CWE85snWIAEG5ES.jpg 1 West_Highland_white_terrier 0.672117 True Old_English_sheepdog 1.461470e-01 True komondor 2.314140e-02 True
505 675891555769696257 https://pbs.twimg.com/media/CWE_x33UwAEE3no.jpg 1 Italian_greyhound 0.305637 True whippet 2.320570e-01 True Great_Dane 1.178060e-01 True
506 675898130735476737 https://pbs.twimg.com/media/CWFFt3_XIAArIYK.jpg 1 Labrador_retriever 0.407430 True malinois 7.703670e-02 True pug 7.459730e-02 True
507 676089483918516224 https://pbs.twimg.com/media/CWHzzFGXIAA0Y_H.jpg 1 bull_mastiff 0.743808 True boxer 1.066970e-01 True American_Staffordshire_terrier 4.233530e-02 True
508 676098748976615425 https://pbs.twimg.com/media/CWH8L72UkAAvjql.jpg 1 walking_stick 0.162179 False sandal 1.290860e-01 False purse 8.141190e-02 False
509 676101918813499392 https://pbs.twimg.com/media/CWH_FTgWIAAwOUy.jpg 1 Shih-Tzu 0.225848 True Norfolk_terrier 1.868730e-01 True Irish_terrier 1.069870e-01 True
510 676146341966438401 https://pbs.twimg.com/media/CWIngp5WEAAJOy3.jpg 1 Irish_water_spaniel 0.388332 True standard_poodle 2.841210e-01 True greenhouse 3.486810e-02 False
511 676191832485810177 https://pbs.twimg.com/media/CWJQ4UmWoAIJ29t.jpg 2 Chihuahua 0.376741 True Italian_greyhound 1.731140e-01 True muzzle 7.148510e-02 False
512 676215927814406144 https://pbs.twimg.com/media/CWJmzNsWUAE706Z.jpg 1 hamster 0.999484 False guinea_pig 1.582170e-04 False broccoli 6.091100e-05 False
513 676219687039057920 https://pbs.twimg.com/media/CWJqN9iWwAAg86R.jpg 1 bubble 0.997556 False leafhopper 1.589610e-04 False whippet 1.324640e-04 True
514 676237365392908289 https://pbs.twimg.com/media/CWJ6Sc-WwAAlpI6.jpg 1 French_bulldog 0.961996 True Chihuahua 2.179300e-02 True Boston_bull 6.916290e-03 True
515 676263575653122048 https://pbs.twimg.com/media/CWKSIfUUYAAiOBO.jpg 1 teddy 0.098283 False toy_poodle 9.802930e-02 True shopping_basket 7.785210e-02 False
516 676430933382295552 https://pbs.twimg.com/media/CWMqV7WUYAEEClG.jpg 1 golden_retriever 0.583875 True cocker_spaniel 2.036710e-01 True Labrador_retriever 3.612170e-02 True
517 676440007570247681 https://pbs.twimg.com/media/CWMyl9EWUAAnZJ0.jpg 2 Maltese_dog 0.579472 True toy_poodle 1.334460e-01 True Shih-Tzu 9.439660e-02 True
518 676470639084101634 https://pbs.twimg.com/media/CWNOdIpWoAAWid2.jpg 1 golden_retriever 0.790386 True borzoi 2.288510e-02 True dingo 1.534340e-02 False
519 676496375194980353 https://pbs.twimg.com/media/CWNl3S9WcAARN34.jpg 1 pug 0.985387 True Norwegian_elkhound 4.416900e-03 True French_bulldog 3.892870e-03 True
520 676533798876651520 https://pbs.twimg.com/media/CWOH4s9U8AEtkmQ.jpg 1 chow 0.265274 True ice_bear 1.676140e-01 False fur_coat 1.175060e-01 False
521 676575501977128964 https://pbs.twimg.com/media/CWOt07EUsAAnOYW.jpg 1 feather_boa 0.424106 False Yorkshire_terrier 7.314430e-02 True Shetland_sheepdog 5.759760e-02 True
522 676582956622721024 https://pbs.twimg.com/media/CWO0m8tUwAAB901.jpg 1 seat_belt 0.790028 False Boston_bull 1.963070e-01 True French_bulldog 1.242890e-02 True
523 676588346097852417 https://pbs.twimg.com/media/CWO5gmCUYAAX4WA.jpg 1 Boston_bull 0.976577 True French_bulldog 1.432370e-02 True Chihuahua 2.301920e-03 True
524 676603393314578432 https://pbs.twimg.com/media/CWPHMqKVAAAE78E.jpg 1 whippet 0.877021 True Great_Dane 3.418190e-02 True boxer 2.840400e-02 True
525 676606785097199616 https://pbs.twimg.com/media/CWPKSGpWcAQN6mw.jpg 1 Loafer 0.202999 False doormat 2.004110e-01 False malinois 1.423000e-01 True
526 676613908052996102 https://pbs.twimg.com/media/CWPQwmJWUAAu_At.jpg 1 book_jacket 0.493790 False Doberman 9.642280e-02 True miniature_pinscher 7.064670e-02 True
527 676617503762681856 https://pbs.twimg.com/media/CWPUB9TWwAALPPx.jpg 1 Chihuahua 0.841084 True Pomeranian 1.205300e-01 True Pekinese 6.600340e-03 True
528 676776431406465024 https://pbs.twimg.com/ext_tw_video_thumb/67677... 1 doormat 0.201346 False dishwasher 1.917490e-01 False microwave 3.811000e-02 False
529 676811746707918848 https://pbs.twimg.com/media/CWSEsO9WwAAX-fZ.jpg 1 Chihuahua 0.440916 True Pomeranian 3.458060e-01 True cocker_spaniel 6.033120e-02 True
530 676819651066732545 https://pbs.twimg.com/media/CWSL4W8WsAAE4KU.jpg 2 rain_barrel 0.625555 False barrel 1.383830e-01 False Labrador_retriever 3.946460e-02 True
531 676821958043033607 https://pbs.twimg.com/media/CWSN-vaXAAA8Ehr.jpg 2 Great_Pyrenees 0.869804 True kuvasz 7.981430e-02 True standard_poodle 1.326300e-02 True
532 676864501615042560 https://pbs.twimg.com/media/CWS0q8iU8AE2Srr.jpg 1 Chesapeake_Bay_retriever 0.371146 True water_buffalo 9.959630e-02 False Weimaraner 4.896790e-02 True
533 676897532954456065 https://pbs.twimg.com/media/CWTSt0UW4AALMNB.jpg 1 hamster 0.628255 False guinea_pig 3.186460e-01 False macaque 1.305820e-02 False
534 676936541936185344 https://pbs.twimg.com/media/CWT2MUgWIAECWig.jpg 1 Chesapeake_Bay_retriever 0.545286 True Norwegian_elkhound 8.148200e-02 True space_heater 4.739110e-02 False
535 676942428000112642 https://pbs.twimg.com/media/CWT7imQXIAMwpQ2.jpg 1 black-footed_ferret 0.707199 False polecat 1.546300e-01 False weasel 9.762550e-02 False
536 676946864479084545 https://pbs.twimg.com/media/CWT_lOQWUAAXPaY.jpg 1 Pekinese 0.752707 True golden_retriever 5.565460e-02 True Great_Pyrenees 4.101780e-02 True
537 676948236477857792 https://pbs.twimg.com/media/CWUA1GFW4AAowiq.jpg 1 guenon 0.611603 False macaque 1.351760e-01 False squirrel_monkey 8.324730e-02 False
538 676949632774234114 https://pbs.twimg.com/media/CWUCGMtWEAAjXnS.jpg 1 Welsh_springer_spaniel 0.206479 True Saint_Bernard 1.393390e-01 True boxer 1.146060e-01 True
539 676957860086095872 https://pbs.twimg.com/ext_tw_video_thumb/67695... 1 Labrador_retriever 0.772423 True beagle 5.590170e-02 True golden_retriever 3.115190e-02 True
540 676975532580409345 https://pbs.twimg.com/media/CWUZpydWcAAeipD.jpg 1 malamute 0.363257 True Siberian_husky 2.458620e-01 True Eskimo_dog 1.255470e-01 True
541 677187300187611136 https://pbs.twimg.com/media/CWXaQMBWcAAATDi.jpg 1 English_setter 0.282396 True Shih-Tzu 8.411190e-02 True Old_English_sheepdog 5.953800e-02 True
542 677228873407442944 https://pbs.twimg.com/media/CWYAEINW4AIuw8P.jpg 1 common_iguana 0.566338 False tennis_ball 1.546460e-01 False green_lizard 4.497580e-02 False
543 677269281705472000 https://pbs.twimg.com/media/CWYk0WxWoAAEwRt.jpg 1 Shetland_sheepdog 0.656616 True collie 1.954050e-01 True German_shepherd 1.310320e-02 True
544 677301033169788928 https://pbs.twimg.com/media/CWZBsjPWsAAZFFl.jpg 1 Japanese_spaniel 0.661178 True Pekinese 1.501190e-01 True Chihuahua 1.197200e-01 True
545 677314812125323265 https://pbs.twimg.com/media/CWZOOIUW4AAQrX_.jpg 2 Blenheim_spaniel 0.924127 True Japanese_spaniel 5.479010e-02 True Chihuahua 8.204040e-03 True
546 677328882937298944 https://pbs.twimg.com/media/CWZbBlAUsAAjRg5.jpg 1 water_buffalo 0.424250 False kelpie 2.905410e-02 True Staffordshire_bullterrier 2.846970e-02 True
547 677331501395156992 https://pbs.twimg.com/media/CWZdaGxXAAAjGjb.jpg 1 beagle 0.313464 True boxer 2.185030e-01 True French_bulldog 1.064620e-01 True
548 677334615166730240 https://pbs.twimg.com/media/CWZgPPUWUAAUOvu.jpg 2 Lakeland_terrier 0.859392 True Airedale 6.729170e-02 True Irish_water_spaniel 4.953060e-02 True
549 677530072887205888 https://pbs.twimg.com/media/CWcSAI-WUAAOB9W.jpg 1 Staffordshire_bullterrier 0.689259 True Norwegian_elkhound 2.612100e-02 True American_Staffordshire_terrier 2.307470e-02 True
550 677547928504967168 https://pbs.twimg.com/media/CWciPonWEAUOqLD.jpg 1 American_Staffordshire_terrier 0.914978 True Staffordshire_bullterrier 8.439530e-02 True boxer 4.616630e-04 True
551 677557565589463040 https://pbs.twimg.com/media/CWcrAVQWEAA6QMp.jpg 1 seat_belt 0.277257 False Shih-Tzu 2.490170e-01 True Pekinese 2.092130e-01 True
552 677565715327688705 https://pbs.twimg.com/media/CWcybBmWcAAigAQ.jpg 1 basset 0.397295 True Welsh_springer_spaniel 1.995540e-01 True purse 1.056410e-01 False
553 677573743309385728 https://pbs.twimg.com/media/CWc5uVPXIAErLYr.jpg 2 patio 0.535070 False folding_chair 8.041920e-02 False parallel_bars 3.479650e-02 False
554 677644091929329666 https://pbs.twimg.com/ext_tw_video_thumb/67764... 1 Chihuahua 0.626236 True Italian_greyhound 1.284830e-01 True swing 5.984040e-02 False
555 677662372920729601 https://pbs.twimg.com/media/CWeKTZTWsAA5R3Z.jpg 1 cowboy_hat 0.256110 False trench_coat 1.270860e-01 False cloak 7.143890e-02 False
556 677673981332312066 https://pbs.twimg.com/media/CWeU5LBWEAA8F0J.jpg 1 Maltese_dog 0.817908 True Angora 7.780510e-02 False Pomeranian 2.218420e-02 True
557 677687604918272002 https://pbs.twimg.com/media/CWehRdEWIAAySyO.jpg 1 Pembroke 0.573047 True sunglasses 1.267580e-01 False golden_retriever 1.080470e-01 True
558 677698403548192770 https://pbs.twimg.com/media/CWerGmOXAAAm6NY.jpg 1 Shih-Tzu 0.916645 True Lhasa 5.788340e-02 True Pekinese 2.012580e-02 True
559 677700003327029250 https://pbs.twimg.com/media/CWesj06W4AAIKl8.jpg 1 Siberian_husky 0.120849 True junco 7.920560e-02 False malamute 6.308750e-02 True
560 677716515794329600 https://pbs.twimg.com/media/CWe7kw9W4AE8UJh.jpg 1 teddy 0.662908 False crib 3.189120e-02 False chow 2.543780e-02 True
561 677895101218201600 https://pbs.twimg.com/media/CWhd_7WWsAAaqWG.jpg 1 dalmatian 0.550702 True kuvasz 6.022640e-02 True Great_Pyrenees 5.863100e-02 True
562 677918531514703872 https://pbs.twimg.com/media/CWhzTbzWUAAEAUN.jpg 1 Eskimo_dog 0.199347 True dalmatian 1.532250e-01 True American_Staffordshire_terrier 1.077980e-01 True
563 678021115718029313 https://pbs.twimg.com/media/CWjQm5gXAAA9GkD.jpg 1 miniature_pinscher 0.822048 True Doberman 9.608450e-02 True Rottweiler 3.270930e-02 True
564 678255464182861824 https://pbs.twimg.com/media/CWmlvxJU4AEAqaN.jpg 1 Chihuahua 0.613819 True Yorkshire_terrier 1.279310e-01 True Pomeranian 6.212430e-02 True
565 678278586130948096 https://pbs.twimg.com/media/CWm6xySUEAAqfFU.jpg 1 Maltese_dog 0.897841 True Lhasa 3.571750e-02 True Tibetan_terrier 1.710750e-02 True
566 678334497360859136 https://pbs.twimg.com/media/CWntoDVWcAEl3NB.jpg 1 Norfolk_terrier 0.378643 True golden_retriever 9.559390e-02 True kelpie 8.530920e-02 True
567 678341075375947776 https://pbs.twimg.com/media/CWnznDTU4AAa-6P.jpg 1 golden_retriever 0.853284 True cocker_spaniel 2.622980e-02 True Labrador_retriever 2.412280e-02 True
568 678380236862578688 https://pbs.twimg.com/media/CWoXOfSUAAA4u8g.jpg 1 dogsled 0.088540 False snowmobile 5.729100e-02 False Samoyed 4.760140e-02 True
569 678389028614488064 https://pbs.twimg.com/media/CWofOHUWUAACGVa.jpg 1 miniature_pinscher 0.516284 True kelpie 2.274020e-01 True vizsla 1.032460e-01 True
570 678396796259975168 https://pbs.twimg.com/media/CWomSU_XIAAUYiK.jpg 2 Pembroke 0.956180 True Cardigan 3.180310e-02 True Chihuahua 6.276500e-03 True
571 678399652199309312 https://pbs.twimg.com/ext_tw_video_thumb/67839... 1 swing 0.929196 False Bedlington_terrier 1.504720e-02 True Great_Pyrenees 1.403890e-02 True
572 678410210315247616 https://pbs.twimg.com/media/CWoyfMiWUAAmGdd.jpg 1 schipperke 0.145877 True Labrador_retriever 9.835380e-02 True kelpie 9.739340e-02 True
573 678424312106393600 https://pbs.twimg.com/media/CWo_T8gW4AAgJNo.jpg 1 Maltese_dog 0.759945 True toy_poodle 1.011940e-01 True Shih-Tzu 5.603740e-02 True
574 678446151570427904 https://pbs.twimg.com/media/CWpTLOYWsAEDhcU.jpg 1 Staffordshire_bullterrier 0.284492 True Rottweiler 1.894340e-01 True American_Staffordshire_terrier 1.894300e-01 True
575 678643457146150913 https://pbs.twimg.com/media/CWsGnyMVEAAM1Y1.jpg 1 Labrador_retriever 0.338757 True flat-coated_retriever 3.044700e-01 True chest 9.339230e-02 False
576 678675843183484930 https://pbs.twimg.com/media/CWskEqnWUAAQZW_.jpg 1 maze 0.339850 False streetcar 9.968780e-02 False sundial 8.480770e-02 False
577 678740035362037760 https://pbs.twimg.com/media/CWtede2WIAAF_AJ.jpg 1 seat_belt 0.787164 False sunglasses 4.573870e-02 False beagle 2.252510e-02 True
578 678755239630127104 https://pbs.twimg.com/media/CWtsSQAUkAAnWws.jpg 1 malamute 0.606654 True Border_collie 1.938310e-01 True collie 4.837810e-02 True
579 678764513869611008 https://pbs.twimg.com/media/CWt0ubZWcAAkFER.jpg 1 Irish_terrier 0.696646 True Australian_terrier 7.496160e-02 True Irish_setter 6.390120e-02 True
580 678767140346941444 https://pbs.twimg.com/media/CWt3G6EVEAIGEPr.jpg 1 harp 0.821120 False window_screen 2.512080e-02 False mosquito_net 1.671560e-02 False
581 678774928607469569 https://pbs.twimg.com/media/CWt-MNIWEAAUC9S.jpg 1 Pembroke 0.194681 True toy_poodle 1.218210e-01 True Pomeranian 9.684300e-02 True
582 678798276842360832 https://pbs.twimg.com/media/CWuTbAKUsAAvZHh.jpg 1 Airedale 0.583122 True silky_terrier 1.295670e-01 True Lakeland_terrier 9.472660e-02 True
583 678800283649069056 https://pbs.twimg.com/media/CWuVQSLW4AAI3w9.jpg 1 Labrador_retriever 0.213673 True beagle 1.462350e-01 True Airedale 1.227010e-01 True
584 678969228704284672 https://pbs.twimg.com/media/CWwu6OLUkAEo3gq.jpg 1 Labrador_retriever 0.680251 True Chesapeake_Bay_retriever 2.016970e-01 True golden_retriever 1.967590e-02 True
585 678991772295516161 https://pbs.twimg.com/media/CWxDaXHWsAAWV8W.jpg 1 Eskimo_dog 0.330216 True Siberian_husky 1.870030e-01 True Chihuahua 1.014200e-01 True
586 679047485189439488 https://pbs.twimg.com/media/CWx2FaLWcAEQ3vh.jpg 1 panpipe 0.962572 False bannister 2.524820e-02 False golden_retriever 2.930350e-03 True
587 679062614270468097 https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg 2 cash_machine 0.802333 False schipperke 4.551860e-02 True German_shepherd 2.335350e-02 True
588 679111216690831360 https://pbs.twimg.com/ext_tw_video_thumb/67911... 1 kelpie 0.189423 True beagle 1.219880e-01 True basset 1.211710e-01 True
589 679132435750195208 https://pbs.twimg.com/media/CWzDWOkXAAAP0k7.jpg 1 Scottish_deerhound 0.194610 True Irish_wolfhound 1.628550e-01 True giant_schnauzer 1.598370e-01 True
590 679148763231985668 https://pbs.twimg.com/media/CWzSMmAWsAAyB1u.jpg 1 Italian_greyhound 0.302685 True hair_slide 1.242810e-01 False Afghan_hound 5.984600e-02 True
591 679158373988876288 https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg 1 pug 0.272205 True bull_mastiff 2.515300e-01 True bath_towel 1.168060e-01 False
592 679462823135686656 https://pbs.twimg.com/media/CW3v1KxW8AAIOuy.jpg 1 toy_poodle 0.621780 True miniature_poodle 1.978190e-01 True soft-coated_wheaten_terrier 4.674500e-02 True
593 679475951516934144 https://pbs.twimg.com/media/CW37xZbUoAAUXe5.jpg 1 Maltese_dog 0.145742 True toy_poodle 1.394070e-01 True West_Highland_white_terrier 1.088210e-01 True
594 679503373272485890 https://pbs.twimg.com/media/CW4UtmYWsAAEjqA.jpg 1 porcupine 0.999846 False meerkat 7.191480e-05 False echidna 4.447290e-05 False
595 679511351870550016 https://pbs.twimg.com/media/CW4b-GUWYAAa8QO.jpg 1 Chihuahua 0.761972 True black-footed_ferret 1.506050e-01 False squirrel_monkey 2.814790e-02 False
596 679527802031484928 https://pbs.twimg.com/media/CW4q7jDWkAA2y8g.jpg 1 mailbox 0.336393 False cannon 1.589360e-01 False cuirass 5.264710e-02 False
597 679530280114372609 https://pbs.twimg.com/media/CW4tL1vWcAIw1dw.jpg 1 dalmatian 0.750256 True jaguar 1.690070e-01 False zebra 6.481490e-03 False
598 679722016581222400 https://pbs.twimg.com/media/CW7bkW6WQAAksgB.jpg 1 boxer 0.459604 True Boston_bull 1.979130e-01 True French_bulldog 8.702250e-02 True
599 679729593985699840 https://pbs.twimg.com/media/CW7iddWUsAElUC0.jpg 1 wallaby 0.164215 False West_Highland_white_terrier 9.351480e-02 True ashcan 6.727830e-02 False
600 679736210798047232 https://pbs.twimg.com/media/CW7oelWWcAAhyzz.jpg 1 French_bulldog 0.319139 True Chihuahua 1.540880e-01 True Cardigan 1.176880e-01 True
601 679777920601223168 https://pbs.twimg.com/media/CW8OYajUMAAPRoF.jpg 1 bloodhound 0.528819 True bull_mastiff 4.201190e-01 True French_bulldog 9.480590e-03 True
602 679828447187857408 https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg 3 Chihuahua 0.346545 True dalmatian 1.662460e-01 True toy_terrier 1.175020e-01 True
603 679844490799091713 https://pbs.twimg.com/media/CW9K9VeVAAE0j-x.jpg 1 Airedale 0.903832 True Border_terrier 3.471260e-02 True toy_poodle 2.137800e-02 True
604 679854723806179328 https://pbs.twimg.com/media/CW9UQ7oWkAAErmU.jpg 1 llama 0.887963 False ram 9.502070e-02 False chow 2.307390e-03 True
605 679862121895714818 https://pbs.twimg.com/media/CW9a_h1WwAApmAy.jpg 1 EntleBucher 0.523206 True Greater_Swiss_Mountain_dog 4.316570e-01 True Appenzeller 4.420790e-02 True
606 679877062409191424 https://pbs.twimg.com/media/CW9olDsUsAA0XSf.jpg 1 hog 0.809466 False hay 6.017780e-02 False lumbermill 1.648340e-02 False
607 680055455951884288 https://pbs.twimg.com/media/CW-ZRC_WQAAyFrL.jpg 1 Samoyed 0.995466 True Great_Pyrenees 1.833950e-03 True Pomeranian 6.669490e-04 True
608 680070545539371008 https://pbs.twimg.com/media/CW-dU34WQAANBGy.jpg 1 earthstar 0.127701 False Shih-Tzu 1.218110e-01 True bubble 1.178200e-01 False
609 680085611152338944 https://pbs.twimg.com/media/CXAiiHUWkAIN_28.jpg 3 pillow 0.778113 False apron 9.502280e-02 False wallet 4.932580e-02 False
610 680100725817409536 https://pbs.twimg.com/media/CW-loUBWYAAn2Cb.jpg 1 golden_retriever 0.698961 True chow 1.459710e-01 True Pomeranian 3.488800e-02 True
611 680115823365742593 https://pbs.twimg.com/media/CXBBurSWMAELewi.jpg 1 pug 0.999365 True French_bulldog 5.436150e-04 True Boston_bull 2.815280e-05 True
612 680130881361686529 https://pbs.twimg.com/media/CXBPbVtWAAA2Vus.jpg 1 Maltese_dog 0.199121 True West_Highland_white_terrier 1.978970e-01 True Shih-Tzu 1.571300e-01 True
613 680145970311643136 https://pbs.twimg.com/media/CXBdJxLUsAAWql2.jpg 1 miniature_poodle 0.457117 True toy_poodle 2.264810e-01 True Maltese_dog 6.768150e-02 True
614 680161097740095489 https://pbs.twimg.com/media/CXBq6RPWkAAaNuU.jpg 1 bluetick 0.268681 True miniature_pinscher 1.256520e-01 True English_setter 8.937270e-02 True
615 680176173301628928 https://pbs.twimg.com/media/CXB4nWnWEAAhLTX.jpg 1 Christmas_stocking 0.207547 False mask 1.938800e-01 False feather_boa 1.527380e-01 False
616 680191257256136705 https://pbs.twimg.com/media/CXCGVXyWsAAAVHE.jpg 1 Brittany_spaniel 0.733253 True Welsh_springer_spaniel 2.516340e-01 True English_springer 9.243210e-03 True
617 680206703334408192 https://pbs.twimg.com/media/CXCUYcRW8AAObYM.jpg 1 Christmas_stocking 0.149758 False cloak 1.288300e-01 False teddy 1.091290e-01 False
618 680221482581123072 https://pbs.twimg.com/media/CXCh0QZW8AALdXm.jpg 1 bubble 0.240173 False hen 1.462220e-01 False abaya 1.393420e-01 False
619 680440374763077632 https://pbs.twimg.com/ext_tw_video_thumb/68044... 1 space_heater 0.920367 False radiator 4.993320e-02 False electric_fan 6.719030e-03 False
620 680473011644985345 https://pbs.twimg.com/media/CXGGlzvWYAArPfk.jpg 1 Lakeland_terrier 0.796694 True West_Highland_white_terrier 1.387090e-01 True Norwich_terrier 1.625340e-02 True
621 680494726643068929 https://pbs.twimg.com/media/CXGaVxOWAAADjhF.jpg 1 kuvasz 0.438627 True Samoyed 1.116220e-01 True Great_Pyrenees 6.406080e-02 True
622 680497766108381184 https://pbs.twimg.com/media/CXGdG0aWcAEbOO1.jpg 1 Chihuahua 0.538354 True muzzle 8.428870e-02 False ski_mask 7.669010e-02 False
623 680583894916304897 https://pbs.twimg.com/media/CXHrcFYWcAEE5_L.jpg 1 tub 0.889801 False bathtub 3.235110e-02 False hippopotamus 1.417730e-02 False
624 680609293079592961 https://pbs.twimg.com/media/CXICiB9UwAE1sKY.jpg 1 French_bulldog 0.700764 True Chihuahua 7.238960e-02 True American_Staffordshire_terrier 3.961870e-02 True
625 680798457301471234 https://pbs.twimg.com/media/CXKuiyHUEAAMAGa.jpg 1 ram 0.499761 False hog 2.837950e-01 False ox 6.745510e-02 False
626 680801747103793152 https://pbs.twimg.com/media/CXKxkseW8AAjAMY.jpg 1 pug 0.996720 True Labrador_retriever 1.438790e-03 True Staffordshire_bullterrier 5.176030e-04 True
627 680836378243002368 https://pbs.twimg.com/media/CXLREjOW8AElfk6.jpg 3 Pembroke 0.427781 True Shetland_sheepdog 1.606690e-01 True Pomeranian 1.112500e-01 True
628 680889648562991104 https://pbs.twimg.com/media/CXMBhXfWEAA4mMI.jpg 1 Shetland_sheepdog 0.876337 True collie 7.833100e-02 True Pomeranian 2.040750e-02 True
629 680913438424612864 https://pbs.twimg.com/media/CXMXKKHUMAA1QN3.jpg 1 Pomeranian 0.615678 True golden_retriever 1.264550e-01 True Chihuahua 8.718360e-02 True
630 680934982542561280 https://pbs.twimg.com/media/CXMqwIQWcAA2iE0.jpg 1 Labrador_retriever 0.784398 True Siberian_husky 5.592510e-02 True beagle 2.275010e-02 True
631 680940246314430465 https://pbs.twimg.com/media/CXMvio7WQAAPZJj.jpg 1 soft-coated_wheaten_terrier 0.289598 True West_Highland_white_terrier 1.571950e-01 True toy_poodle 7.443470e-02 True
632 680959110691590145 https://pbs.twimg.com/media/CXNAsm6WsAEST9R.jpg 2 carousel 0.500992 False feather_boa 6.439000e-02 False pug 4.435650e-02 True
633 680970795137544192 https://pbs.twimg.com/media/CXNLU6wWkAE0OkJ.jpg 1 pug 0.713102 True whippet 5.742630e-02 True quilt 5.601810e-02 False
634 681193455364796417 https://pbs.twimg.com/media/CXQV03pWYAAVniz.jpg 1 Pomeranian 0.992619 True keeshond 4.356450e-03 True schipperke 8.140000e-04 True
635 681231109724700672 https://pbs.twimg.com/media/CXQ4EwQWwAEVaUf.jpg 1 Irish_setter 0.406047 True cocker_spaniel 3.456460e-01 True Airedale 1.479120e-01 True
636 681242418453299201 https://pbs.twimg.com/media/CXRCXesVAAArSXt.jpg 1 motor_scooter 0.255934 False rifle 1.452020e-01 False assault_rifle 9.700010e-02 False
637 681261549936340994 https://pbs.twimg.com/media/CXRTw_5WMAAUDVp.jpg 1 Tibetan_terrier 0.382101 True miniature_poodle 9.542940e-02 True Maltese_dog 6.573770e-02 True
638 681281657291280384 https://pbs.twimg.com/media/CXRmDfWWMAADCdc.jpg 1 Saint_Bernard 0.998830 True Pekinese 3.913120e-04 True Great_Pyrenees 2.235820e-04 True
639 681297372102656000 https://pbs.twimg.com/media/CXR0WJ_W8AMd_O8.jpg 1 Lhasa 0.482401 True Shih-Tzu 1.136720e-01 True Pomeranian 9.622860e-02 True
640 681302363064414209 https://pbs.twimg.com/media/CXR44l9WcAAcG_N.jpg 1 frilled_lizard 0.326259 False tailed_frog 1.045390e-01 False axolotl 7.247930e-02 False
641 681320187870711809 https://pbs.twimg.com/media/CXSJGAQUQAAoG9Q.jpg 1 Samoyed 0.362596 True Eskimo_dog 2.453950e-01 True Siberian_husky 1.082320e-01 True
642 681339448655802368 https://pbs.twimg.com/media/CXSanNkWkAAqR9M.jpg 1 seat_belt 0.532441 False Labrador_retriever 9.461490e-02 True kuvasz 8.986300e-02 True
643 681523177663676416 https://pbs.twimg.com/media/CXVBtX_WwAEuqbP.jpg 1 Norfolk_terrier 0.205067 True German_shepherd 1.604390e-01 True chow 1.562340e-01 True
644 681579835668455424 https://pbs.twimg.com/media/CXV1Ot_W8AEpkQO.jpg 1 Rottweiler 0.760671 True Labrador_retriever 9.658470e-02 True Staffordshire_bullterrier 4.033260e-02 True
645 681610798867845120 https://pbs.twimg.com/media/CXWRZBgWkAEHMea.jpg 1 toy_poodle 0.821704 True miniature_poodle 1.160420e-01 True Yorkshire_terrier 1.484720e-02 True
646 681654059175129088 https://pbs.twimg.com/media/CXW4wGHWsAE_eBD.jpg 1 Pomeranian 0.800538 True chow 1.468920e-01 True Pekinese 3.761250e-02 True
647 681679526984871937 https://pbs.twimg.com/media/CXXP5O4WEAA4dgS.jpg 1 birdhouse 0.472351 False teddy 1.420580e-01 False pot 3.290590e-02 False
648 681694085539872773 https://pbs.twimg.com/media/CXXdJ7CVAAALu23.jpg 1 toy_poodle 0.920992 True miniature_poodle 6.085720e-02 True Maltese_dog 6.063720e-03 True
649 681891461017812993 https://pbs.twimg.com/media/CXaQqGbWMAAKEgN.jpg 1 Chihuahua 0.203570 True doormat 1.343160e-01 False toy_terrier 8.448230e-02 True
650 681981167097122816 https://pbs.twimg.com/media/CXbiQHmWcAAt6Lm.jpg 1 Labrador_retriever 0.452577 True golden_retriever 4.034200e-01 True beagle 6.948570e-02 True
651 682003177596559360 https://pbs.twimg.com/media/CXb2RcDUsAEnkJb.jpg 1 triceratops 0.249872 False chimpanzee 6.092930e-02 False mask 5.022100e-02 False
652 682032003584274432 https://pbs.twimg.com/media/CXcQfUNUQAEwFoQ.jpg 1 schipperke 0.997953 True groenendael 6.764350e-04 True miniature_pinscher 2.112460e-04 True
653 682047327939461121 https://pbs.twimg.com/media/CXcebTeWsAUQJ-J.jpg 1 teddy 0.364095 False doormat 1.192430e-01 False toyshop 3.512710e-02 False
654 682059653698686977 https://pbs.twimg.com/media/CXcpovWWMAAMcfv.jpg 2 jigsaw_puzzle 0.995873 False Siamese_cat 7.808850e-04 False pizza 4.324800e-04 False
655 682242692827447297 https://pbs.twimg.com/media/CXfQG_fW8AAjVhV.jpg 1 snorkel 0.504983 False loggerhead 3.452980e-01 False scuba_diver 7.475390e-02 False
656 682259524040966145 https://pbs.twimg.com/media/CXffar9WYAArfpw.jpg 1 Siberian_husky 0.439670 True Eskimo_dog 3.404740e-01 True malamute 1.012530e-01 True
657 682303737705140231 https://pbs.twimg.com/media/CXgHoLnWAAA8i52.jpg 1 seat_belt 0.997659 False Lakeland_terrier 1.730920e-03 True Airedale 2.036100e-04 True
658 682389078323662849 https://pbs.twimg.com/media/CXhVKtvW8AAyiyK.jpg 1 curly-coated_retriever 0.482288 True flat-coated_retriever 3.152860e-01 True Great_Dane 6.217890e-02 True
659 682393905736888321 https://pbs.twimg.com/media/CXhZom1UwAA4Zz6.jpg 1 vizsla 0.657275 True paddle 9.028640e-02 False Rhodesian_ridgeback 4.822830e-02 True
660 682406705142087680 https://pbs.twimg.com/media/CXhlRmRUMAIYoFO.jpg 1 wombat 0.709344 False koala 1.697580e-01 False beaver 7.943340e-02 False
661 682429480204398592 https://pbs.twimg.com/media/CXh5_dDWQAIbU-J.jpg 1 whippet 0.594701 True Italian_greyhound 3.140910e-01 True Mexican_hairless 3.777330e-02 True
662 682638830361513985 https://pbs.twimg.com/media/CXk4W0qWYAMEMEs.jpg 1 English_springer 0.440781 True Cardigan 4.111820e-01 True Border_collie 2.241220e-02 True
663 682662431982772225 https://pbs.twimg.com/media/CXlN1-EWMAQdwXK.jpg 1 beagle 0.413824 True Cardigan 2.635530e-01 True basset 1.676180e-01 True
664 682697186228989953 https://pbs.twimg.com/media/CXltdtaWYAIuX_V.jpg 1 bald_eagle 0.097232 False torch 9.662150e-02 False cliff 9.038550e-02 False
665 682750546109968385 https://pbs.twimg.com/media/CXmd_bsWkAEEXck.jpg 1 English_setter 0.947198 True English_springer 3.112770e-02 True Brittany_spaniel 5.512470e-03 True
666 682788441537560576 https://pbs.twimg.com/media/CXnAdosWAAEMGCM.jpg 1 toyshop 0.375610 False orange 9.453760e-02 False teddy 3.980820e-02 False
667 682962037429899265 https://pbs.twimg.com/media/CXpeVzQW8AApKYb.jpg 1 dingo 0.278600 False Chihuahua 1.552070e-01 True loupe 1.535980e-01 False
668 683030066213818368 https://pbs.twimg.com/media/CXqcOHCUQAAugTB.jpg 1 boxer 0.722218 True bull_mastiff 1.938040e-01 True French_bulldog 5.519370e-02 True
669 683078886620553216 https://pbs.twimg.com/media/CXrIntsUsAEkv0d.jpg 1 koala 0.141432 False Eskimo_dog 9.404420e-02 True wallaby 8.523650e-02 False
670 683098815881154561 https://pbs.twimg.com/media/CXrawAhWkAAWSxC.jpg 1 golden_retriever 0.889848 True kuvasz 5.300820e-02 True Labrador_retriever 3.788120e-02 True
671 683111407806746624 https://pbs.twimg.com/media/CXrmMSpUwAAdeRj.jpg 1 cocker_spaniel 0.901392 True soft-coated_wheaten_terrier 2.860480e-02 True miniature_schnauzer 1.780540e-02 True
672 683142553609318400 https://pbs.twimg.com/media/CXsChyjW8AQJ16C.jpg 1 Leonberg 0.605851 True chow 1.834700e-01 True German_shepherd 7.966190e-02 True
673 683357973142474752 https://pbs.twimg.com/media/CXvGbWeWMAcRbyJ.jpg 1 Pembroke 0.406509 True Cardigan 1.548540e-01 True Siberian_husky 1.363660e-01 True
674 683391852557561860 https://pbs.twimg.com/media/CXvlQ2zW8AAE0tp.jpg 1 French_bulldog 0.992833 True Boston_bull 4.748630e-03 True pug 1.391690e-03 True
675 683449695444799489 https://pbs.twimg.com/media/CXwZ3pbWsAAriTv.jpg 1 Lakeland_terrier 0.303512 True soft-coated_wheaten_terrier 2.114240e-01 True golden_retriever 1.707250e-01 True
676 683462770029932544 https://pbs.twimg.com/media/CXwlw9MWsAAc-JB.jpg 1 Italian_greyhound 0.399560 True whippet 2.671530e-01 True German_short-haired_pointer 8.131910e-02 True
677 683481228088049664 https://pbs.twimg.com/media/CXw2jSpWMAAad6V.jpg 1 keeshond 0.508951 True chow 4.420160e-01 True German_shepherd 1.320600e-02 True
678 683498322573824003 https://pbs.twimg.com/media/CXxGGOsUwAAr62n.jpg 1 Airedale 0.945362 True Irish_terrier 2.685000e-02 True Lakeland_terrier 1.682640e-02 True
679 683742671509258241 https://pbs.twimg.com/media/CX0kVRxWYAAWWZi.jpg 1 Pembroke 0.895279 True Cardigan 2.238500e-02 True cocker_spaniel 1.704520e-02 True
680 683773439333797890 https://pbs.twimg.com/media/CX1AUQ2UAAAC6s-.jpg 1 miniature_pinscher 0.072885 True Labrador_retriever 5.786580e-02 True schipperke 5.325660e-02 True
681 683828599284170753 https://pbs.twimg.com/media/CX1ye7HUMAADDzh.jpg 1 malamute 0.577376 True Siberian_husky 2.871310e-01 True Eskimo_dog 1.175630e-01 True
682 683834909291606017 https://pbs.twimg.com/ext_tw_video_thumb/68383... 1 Maltese_dog 0.738449 True toy_poodle 1.029920e-01 True Samoyed 2.324720e-02 True
683 683849932751646720 https://pbs.twimg.com/media/CX2F4qNUQAAR6Cm.jpg 1 hog 0.458855 False Mexican_hairless 1.649060e-01 True wild_boar 1.117000e-01 False
684 683852578183077888 https://pbs.twimg.com/media/CX2ISqSWYAAEtCF.jpg 1 toy_poodle 0.551352 True teddy 1.806780e-01 False miniature_poodle 1.640950e-01 True
685 683857920510050305 https://pbs.twimg.com/media/CX2NJmRWYAAxz_5.jpg 1 bluetick 0.174738 True Shetland_sheepdog 1.261010e-01 True beagle 1.228870e-01 True
686 684097758874210310 https://pbs.twimg.com/media/CX5nR5oWsAAiclh.jpg 1 Labrador_retriever 0.627856 True German_short-haired_pointer 1.736750e-01 True Chesapeake_Bay_retriever 4.134170e-02 True
687 684122891630342144 https://pbs.twimg.com/media/CX5-HslWQAIiXKB.jpg 1 cheetah 0.822193 False Arabian_camel 4.697610e-02 False jaguar 2.578480e-02 False
688 684177701129875456 https://pbs.twimg.com/media/CX6v_JOWsAE0beZ.jpg 1 chow 0.334783 True German_shepherd 1.626470e-01 True golden_retriever 1.386120e-01 True
689 684188786104872960 https://pbs.twimg.com/media/CX66EiJWkAAVjA-.jpg 1 kelpie 0.537782 True American_Staffordshire_terrier 8.295320e-02 True Staffordshire_bullterrier 6.975990e-02 True
690 684195085588783105 https://pbs.twimg.com/media/CX6_y6OU0AAl3v2.jpg 1 Chihuahua 0.379365 True toy_terrier 1.218090e-01 True Boston_bull 9.598090e-02 True
691 684200372118904832 https://pbs.twimg.com/media/CX7EkuHWkAESLZk.jpg 1 llama 0.681347 False ram 1.201420e-01 False hog 4.368580e-02 False
692 684222868335505415 https://pbs.twimg.com/media/CX7Y_ByWwAEJdUy.jpg 1 soft-coated_wheaten_terrier 0.791182 True cocker_spaniel 7.244410e-02 True teddy 7.148650e-02 False
693 684225744407494656 https://pbs.twimg.com/media/CX7br3HWsAAQ9L1.jpg 2 golden_retriever 0.203249 True Samoyed 6.795810e-02 True Great_Pyrenees 6.532750e-02 True
694 684241637099323392 https://pbs.twimg.com/media/CX7qIcdWcAELJ7N.jpg 1 Pembroke 0.508498 True black-footed_ferret 1.155320e-01 False weasel 5.128010e-02 False
695 684460069371654144 https://pbs.twimg.com/media/CX-wzZEUwAA4ISM.jpg 1 Labrador_retriever 0.673691 True Chesapeake_Bay_retriever 1.948970e-01 True American_Staffordshire_terrier 5.947130e-02 True
696 684481074559381504 https://pbs.twimg.com/media/CX_D6AJWwAAnBIw.jpg 1 Chihuahua 0.937810 True Pomeranian 2.030670e-02 True polecat 1.735700e-02 False
697 684538444857667585 https://pbs.twimg.com/ext_tw_video_thumb/68453... 1 Chihuahua 0.702583 True Siamese_cat 6.821810e-02 False macaque 4.332460e-02 False
698 684567543613382656 https://pbs.twimg.com/media/CYASi6FWQAEQMW2.jpg 1 minibus 0.401942 False llama 2.291450e-01 False seat_belt 2.093930e-01 False
699 684594889858887680 https://pbs.twimg.com/media/CYAra7JWsAACPZH.jpg 1 Weimaraner 0.948688 True English_setter 3.535240e-02 True Brittany_spaniel 3.878780e-03 True
700 684800227459624960 https://pbs.twimg.com/media/CYDmK7ZVAAI_ylL.jpg 1 miniature_schnauzer 0.294457 True Norfolk_terrier 1.618850e-01 True West_Highland_white_terrier 1.209920e-01 True
701 684880619965411328 https://pbs.twimg.com/media/CYEvSaRWwAAukZ_.jpg 1 clog 0.081101 False spindle 6.695660e-02 False agama 6.088370e-02 False
702 684902183876321280 https://pbs.twimg.com/media/CYFC5lmWAAAEIho.jpg 1 Pembroke 0.708034 True Cardigan 2.914470e-01 True dingo 1.845610e-04 False
703 684914660081053696 https://pbs.twimg.com/media/CYFOP6cWEAAWp-k.jpg 1 shopping_cart 0.460950 False chow 2.612880e-01 True Labrador_retriever 7.419380e-02 True
704 684926975086034944 https://pbs.twimg.com/media/CYFZXdiU0AAc_kw.jpg 1 Labrador_retriever 0.769412 True golden_retriever 1.448930e-01 True lion 2.143980e-02 False
705 684940049151070208 https://pbs.twimg.com/media/CYFlVUFWwAAEsWX.jpg 2 Border_collie 0.665578 True collie 1.768460e-01 True Old_English_sheepdog 6.517470e-02 True
706 684959798585110529 https://pbs.twimg.com/media/CYF3TSlWMAAaoG5.jpg 1 llama 0.379624 False triceratops 1.627610e-01 False hog 8.425150e-02 False
707 685169283572338688 https://pbs.twimg.com/media/CYI10WhWsAAjzii.jpg 1 Bernese_mountain_dog 0.975096 True Appenzeller 1.457810e-02 True EntleBucher 5.943480e-03 True
708 685198997565345792 https://pbs.twimg.com/media/CYJQxvJW8AAkkws.jpg 1 dishwasher 0.888829 False stove 1.341150e-02 False Old_English_sheepdog 9.671380e-03 True
709 685268753634967552 https://pbs.twimg.com/media/CYKQS0xUQAEOptC.jpg 1 pug 0.999044 True Norwegian_elkhound 5.465860e-04 True bull_mastiff 2.351950e-04 True
710 685307451701334016 https://pbs.twimg.com/media/CYKzfTTWMAEeTN7.jpg 1 Pomeranian 0.963176 True Shetland_sheepdog 1.946830e-02 True keeshond 8.604930e-03 True
711 685315239903100929 https://pbs.twimg.com/media/CYK6kf0WMAAzP-0.jpg 2 chow 0.470162 True Pomeranian 1.596770e-01 True Eskimo_dog 1.050740e-01 True
712 685321586178670592 https://pbs.twimg.com/media/CYLAWFMWMAEcRzb.jpg 1 Boston_bull 0.972483 True French_bulldog 2.546930e-02 True boxer 4.575440e-04 True
713 685325112850124800 https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg 1 golden_retriever 0.586937 True Labrador_retriever 3.982600e-01 True kuvasz 5.409690e-03 True
714 685532292383666176 https://pbs.twimg.com/media/CYN_-6iW8AQhPu2.jpg 1 white_wolf 0.318524 False dingo 2.154360e-01 False collie 9.580520e-02 True
715 685547936038666240 https://pbs.twimg.com/media/CYOONfZW8AA7IOA.jpg 1 web_site 0.923987 False oscilloscope 9.712370e-03 False hand-held_computer 8.768570e-03 False
716 685641971164143616 https://pbs.twimg.com/media/CYPjvFqW8AAgiP2.jpg 1 Lakeland_terrier 0.253839 True Airedale 2.133490e-01 True three-toed_sloth 8.383410e-02 False
717 685663452032069632 https://pbs.twimg.com/ext_tw_video_thumb/68566... 1 Chesapeake_Bay_retriever 0.171174 True tennis_ball 9.064400e-02 False racket 4.850770e-02 False
718 685667379192414208 https://pbs.twimg.com/media/CYP62A6WkAAOnL4.jpg 1 sliding_door 0.344526 False doormat 1.900270e-01 False washbasin 4.632640e-02 False
719 685906723014619143 https://pbs.twimg.com/media/CYTUhn7WkAEXocW.jpg 1 Yorkshire_terrier 0.414963 True briard 6.350520e-02 True Pekinese 5.368220e-02 True
720 685943807276412928 https://pbs.twimg.com/ext_tw_video_thumb/68594... 1 papillon 0.200812 True toy_terrier 1.145120e-01 True Cardigan 9.451960e-02 True
721 685973236358713344 https://pbs.twimg.com/media/CYURBGoWYAAKey3.jpg 1 Siberian_husky 0.450678 True Eskimo_dog 4.302750e-01 True malamute 1.185900e-01 True
722 686003207160610816 https://pbs.twimg.com/media/CYUsRsbWAAAUt4Y.jpg 1 damselfly 0.190786 False common_newt 9.813140e-02 False whiptail 8.895820e-02 False
723 686007916130873345 https://pbs.twimg.com/media/CYUwjz-UAAEcdi8.jpg 1 Rhodesian_ridgeback 0.885301 True redbone 4.233540e-02 True seat_belt 1.049300e-02 False
724 686034024800862208 https://pbs.twimg.com/media/CYVIToGWQAAEZ_y.jpg 1 Great_Dane 0.236920 True Irish_wolfhound 1.176080e-01 True Greater_Swiss_Mountain_dog 1.039000e-01 True
725 686050296934563840 https://pbs.twimg.com/media/CYVXBb9WsAAwL3p.jpg 1 Pomeranian 0.985789 True keeshond 4.082910e-03 True Pekinese 3.333660e-03 True
726 686358356425093120 https://pbs.twimg.com/media/CYZvRttWYAE_RXc.jpg 1 pug 0.985237 True bull_mastiff 8.840620e-03 True boxer 2.321430e-03 True
727 686377065986265092 https://pbs.twimg.com/media/CYaAS2kUoAINkye.jpg 1 German_shepherd 0.830816 True Leonberg 7.632520e-02 True bloodhound 3.744860e-02 True
728 686386521809772549 https://pbs.twimg.com/media/CYaI5aaW8AE8Uyk.jpg 1 Yorkshire_terrier 0.477704 True silky_terrier 1.716730e-01 True Australian_terrier 8.833400e-02 True
729 686606069955735556 https://pbs.twimg.com/media/CYdQktMWsAEI29_.jpg 1 Labrador_retriever 0.320012 True Ibizan_hound 2.081720e-01 True Saluki 7.897470e-02 True
730 686618349602762752 https://pbs.twimg.com/media/CYdbvwjWcAEtjYu.jpg 1 Rottweiler 0.441331 True miniature_pinscher 2.331800e-01 True Gordon_setter 9.358200e-02 True
731 686683045143953408 https://pbs.twimg.com/media/CYeWlh0WAAADhsj.jpg 1 Norwich_terrier 0.100499 True cocker_spaniel 8.067110e-02 True golden_retriever 7.940620e-02 True
732 686730991906516992 https://pbs.twimg.com/media/CYfCMdFWAAA44YA.jpg 1 Tibetan_mastiff 0.338812 True Newfoundland 1.809250e-01 True golden_retriever 1.800230e-01 True
733 686749460672679938 https://pbs.twimg.com/media/CYfS75fWAAAllde.jpg 1 cheeseburger 0.643808 False hotdog 2.013780e-01 False bagel 6.387970e-02 False
734 686947101016735744 https://pbs.twimg.com/media/CYiGvn-UwAEe4wL.jpg 1 refrigerator 0.799795 False medicine_chest 1.825380e-01 False ice_bear 1.430580e-03 False
735 687096057537363968 https://pbs.twimg.com/media/CYkON6CVAAAPXAc.jpg 1 Labrador_retriever 0.417107 True Chesapeake_Bay_retriever 3.417300e-01 True German_short-haired_pointer 1.777020e-01 True
736 687102708889812993 https://pbs.twimg.com/media/CYkURJjW8AEamoI.jpg 1 fiddler_crab 0.992069 False quail 2.490600e-03 False rock_crab 1.512570e-03 False
737 687109925361856513 https://pbs.twimg.com/media/CYka1NTWMAAOclP.jpg 2 borzoi 0.883086 True whippet 2.293360e-02 True Saluki 2.160560e-02 True
738 687124485711986689 https://pbs.twimg.com/media/CYkoE10WEAAWqxm.jpg 1 car_mirror 0.997121 False seat_belt 3.750870e-04 False beagle 2.162060e-04 True
739 687127927494963200 https://pbs.twimg.com/media/CYkrNIVWcAMswmP.jpg 1 pug 0.178205 True Chihuahua 1.491640e-01 True Shih-Tzu 1.205050e-01 True
740 687312378585812992 https://pbs.twimg.com/media/CYnS9VWW8AAeR8m.jpg 1 seat_belt 0.703561 False Great_Dane 1.399090e-01 True Weimaraner 2.111250e-02 True
741 687317306314240000 https://pbs.twimg.com/media/CYnXcLEUkAAIQOM.jpg 1 Shih-Tzu 0.747208 True Maltese_dog 9.102540e-02 True Lhasa 3.578780e-02 True
742 687460506001633280 https://pbs.twimg.com/media/CYpZrtDWwAE8Kpw.jpg 1 Boston_bull 0.223366 True boxer 1.835960e-01 True French_bulldog 1.769160e-01 True
743 687476254459715584 https://pbs.twimg.com/media/CYpoAZTWEAA6vDs.jpg 1 wood_rabbit 0.702725 False Angora 1.906590e-01 False hare 1.050720e-01 False
744 687480748861947905 https://pbs.twimg.com/media/CYpsFmIWAAAYh9C.jpg 1 English_springer 0.472273 True English_setter 1.668620e-01 True Brittany_spaniel 1.634110e-01 True
745 687494652870668288 https://pbs.twimg.com/media/CYp4vFrVAAEs9AX.jpg 1 Rottweiler 0.391471 True miniature_pinscher 2.735950e-01 True Tibetan_mastiff 4.169190e-02 True
746 687664829264453632 https://pbs.twimg.com/media/CYsTg1XUsAEPjxE.jpg 1 pug 0.957365 True French_bulldog 3.855870e-02 True toy_poodle 6.673610e-04 True
747 687704180304273409 https://pbs.twimg.com/media/CYs3TKzUAAAF9A2.jpg 1 miniature_pinscher 0.956063 True toy_terrier 1.223060e-02 True Chihuahua 5.397480e-03 True
748 687807801670897665 https://pbs.twimg.com/media/CYuVi9pWwAAbOGC.jpg 1 Staffordshire_bullterrier 0.151113 True boxer 1.356970e-01 True American_Staffordshire_terrier 8.659120e-02 True
749 687818504314159109 https://pbs.twimg.com/media/CYufR8_WQAAWCqo.jpg 1 Lakeland_terrier 0.873029 True soft-coated_wheaten_terrier 6.092420e-02 True toy_poodle 1.703090e-02 True
750 687826841265172480 https://pbs.twimg.com/media/CYum3KbWEAArFrI.jpg 1 Pomeranian 0.997210 True Pekinese 8.032410e-04 True keeshond 3.725150e-04 True
751 688064179421470721 https://pbs.twimg.com/media/CYx-tGaUoAAEXV8.jpg 1 Eskimo_dog 0.240602 True Norwegian_elkhound 1.803690e-01 True Siberian_husky 9.073880e-02 True
752 688116655151435777 https://pbs.twimg.com/media/CYyucekVAAESj8K.jpg 1 pug 0.973819 True Chihuahua 1.089100e-02 True Staffordshire_bullterrier 6.863890e-03 True
753 688179443353796608 https://pbs.twimg.com/media/CYznjAcUEAQ5Zq7.jpg 1 sorrel 0.811520 False horse_cart 2.482010e-02 False Arabian_camel 1.515530e-02 False
754 688211956440801280 https://pbs.twimg.com/ext_tw_video_thumb/68821... 1 bannister 0.369449 False four-poster 1.053070e-01 False shoji 9.876690e-02 False
755 688385280030670848 https://pbs.twimg.com/media/CY2iwGNWUAI5zWi.jpg 2 golden_retriever 0.900437 True cocker_spaniel 2.229250e-02 True sombrero 1.499680e-02 False
756 688519176466644993 https://pbs.twimg.com/media/CY4ciRFUMAAovos.jpg 1 Pembroke 0.696372 True Cardigan 1.210520e-01 True Shetland_sheepdog 5.059200e-02 True
757 688547210804498433 https://pbs.twimg.com/media/CY42CFWW8AACOwt.jpg 1 papillon 0.531279 True Blenheim_spaniel 2.141970e-01 True Border_collie 5.383990e-02 True
758 688789766343622656 https://pbs.twimg.com/media/CY8SocAWsAARuyh.jpg 1 American_Staffordshire_terrier 0.599660 True Staffordshire_bullterrier 3.809760e-01 True bull_mastiff 3.889020e-03 True
759 688804835492233216 https://pbs.twimg.com/media/CY8gWFRWUAAm1XL.jpg 3 malinois 0.199512 True German_shepherd 9.679730e-02 True Saluki 8.284820e-02 True
760 688828561667567616 https://pbs.twimg.com/media/CY816snW8AYltrQ.jpg 1 Cardigan 0.614231 True skunk 1.393920e-01 False toilet_tissue 3.115820e-02 False
761 688894073864884227 https://pbs.twimg.com/media/CY9xf1dUAAE4XLc.jpg 1 hog 0.669996 False guinea_pig 7.734700e-02 False hamster 6.239820e-02 False
762 688898160958271489 https://pbs.twimg.com/media/CY91OENWUAE5agj.jpg 1 Ibizan_hound 0.853170 True Chihuahua 3.989730e-02 True Italian_greyhound 3.521960e-02 True
763 688908934925697024 https://pbs.twimg.com/media/CY9_BOYWkAAkuzn.jpg 1 crane 0.158859 False pier 1.300160e-01 False bell_cote 8.774140e-02 False
764 688916208532455424 https://pbs.twimg.com/media/CY-Fn1FWEAQhzhs.jpg 1 Pembroke 0.430544 True red_fox 2.065760e-01 False Pomeranian 1.543520e-01 True
765 689143371370250240 https://pbs.twimg.com/media/CZBUO2UWsAAKehS.jpg 1 English_springer 0.303781 True papillon 1.651320e-01 True Welsh_springer_spaniel 1.490510e-01 True
766 689154315265683456 https://pbs.twimg.com/media/CZBeMMVUwAEdVqI.jpg 1 cocker_spaniel 0.816044 True golden_retriever 5.413540e-02 True Airedale 3.064810e-02 True
767 689275259254616065 https://pbs.twimg.com/media/CZDMMY0WEAAQYjQ.jpg 1 American_Staffordshire_terrier 0.215161 True Chesapeake_Bay_retriever 7.905090e-02 True Doberman 7.022590e-02 True
768 689280876073582592 https://pbs.twimg.com/media/CZDRTAPUoAEaqxF.jpg 3 Chihuahua 0.637546 True American_Staffordshire_terrier 1.506940e-01 True Staffordshire_bullterrier 1.039530e-01 True
769 689283819090870273 https://pbs.twimg.com/media/CZDT-mZWsAEK9BH.jpg 1 Scotch_terrier 0.267979 True affenpinscher 1.996190e-01 True cairn 1.274690e-01 True
770 689289219123089408 https://pbs.twimg.com/ext_tw_video_thumb/68928... 1 snowmobile 0.254642 False assault_rifle 1.295580e-01 False rifle 1.108750e-01 False
771 689517482558820352 https://pbs.twimg.com/media/CZGofjJW0AINjN9.jpg 1 Pembroke 0.799319 True Cardigan 1.895370e-01 True papillon 3.386190e-03 True
772 689557536375177216 https://pbs.twimg.com/media/CZHM60BWIAA4AY4.jpg 1 Eskimo_dog 0.169482 True Siberian_husky 1.616550e-01 True dingo 1.544140e-01 False
773 689599056876867584 https://pbs.twimg.com/media/CZHyrvOXEAEin-A.jpg 1 dogsled 0.426494 False cocker_spaniel 7.310140e-02 True Chihuahua 7.032290e-02 True
774 689623661272240129 https://pbs.twimg.com/media/CZIJD2SWIAMJgNI.jpg 1 toy_poodle 0.279604 True mashed_potato 2.085640e-01 False Labrador_retriever 7.748090e-02 True
775 689659372465688576 https://pbs.twimg.com/media/CZIpimOWcAETFRt.jpg 1 bustard 0.225221 False koala 5.762530e-02 False goose 5.356890e-02 False
776 689661964914655233 https://pbs.twimg.com/media/CZIr5gFUsAAvnif.jpg 1 Italian_greyhound 0.322818 True whippet 2.469660e-01 True Chihuahua 1.225410e-01 True
777 689835978131935233 https://pbs.twimg.com/media/CZLKJpDWQAA-5u4.jpg 1 collie 0.600186 True Shetland_sheepdog 2.989390e-01 True borzoi 2.261560e-02 True
778 689877686181715968 https://pbs.twimg.com/media/CZLwGAIWQAIYsTx.jpg 1 Old_English_sheepdog 0.269155 True Tibetan_terrier 1.114960e-01 True Lakeland_terrier 1.049390e-01 True
779 689905486972461056 https://pbs.twimg.com/media/CZMJYCRVAAE35Wk.jpg 4 Pomeranian 0.943331 True Shetland_sheepdog 2.367510e-02 True chow 7.164950e-03 True
780 689977555533848577 https://pbs.twimg.com/media/CZNK7NpWwAEAqUh.jpg 1 cowboy_hat 0.291081 False Labrador_retriever 1.796250e-01 True sombrero 1.214930e-01 False
781 689999384604450816 https://pbs.twimg.com/media/CZNexghWAAAYnT-.jpg 1 standard_poodle 0.444499 True English_springer 1.298300e-01 True pug 7.380570e-02 True
782 690005060500217858 https://pbs.twimg.com/media/CZNj8N-WQAMXASZ.jpg 1 Samoyed 0.270287 True Great_Pyrenees 1.140270e-01 True teddy 7.247480e-02 False
783 690015576308211712 https://pbs.twimg.com/media/CZNtgWhWkAAbq3W.jpg 2 malamute 0.949609 True Siberian_husky 3.308370e-02 True Eskimo_dog 1.666270e-02 True
784 690021994562220032 https://pbs.twimg.com/media/CZNzV6cW0AAsX7p.jpg 1 badger 0.289550 False weasel 9.914020e-02 False malamute 4.069580e-02 True
785 690248561355657216 https://pbs.twimg.com/media/CZRBZ9mWkAAWblt.jpg 1 motor_scooter 0.382690 False moped 3.180170e-01 False pickup 4.062540e-02 False
786 690360449368465409 https://pbs.twimg.com/media/CZSnKw8WwAAAN7q.jpg 1 pug 0.686933 True French_bulldog 7.635870e-02 True Brabancon_griffon 3.500700e-02 True
787 690374419777196032 https://pbs.twimg.com/media/CZSz3vWXEAACElU.jpg 1 kuvasz 0.286345 True Labrador_retriever 1.071440e-01 True ice_bear 8.508580e-02 False
788 690400367696297985 https://pbs.twimg.com/media/CZTLeBuWIAAFkeR.jpg 1 Pembroke 0.426459 True papillon 3.173680e-01 True Shetland_sheepdog 7.761600e-02 True
789 690597161306841088 https://pbs.twimg.com/media/CZV-c9NVIAEWtiU.jpg 1 Lhasa 0.097500 True koala 9.193390e-02 False sunglasses 9.150480e-02 False
790 690649993829576704 https://pbs.twimg.com/media/CZWugJsWYAIzVzJ.jpg 1 bighorn 0.215438 False hyena 1.379280e-01 False Mexican_hairless 9.817080e-02 True
791 690690673629138944 https://pbs.twimg.com/media/CZXTgKkWwAA5UZJ.jpg 1 bath_towel 0.194532 False radiator 1.277760e-01 False Maltese_dog 8.962460e-02 True
792 690728923253055490 https://pbs.twimg.com/media/CZX2SxaXEAEcnR6.jpg 1 kuvasz 0.422806 True golden_retriever 2.915860e-01 True Great_Pyrenees 7.618920e-02 True
793 690735892932222976 https://pbs.twimg.com/media/CZX8nyeVAAEstKM.jpg 1 golden_retriever 0.883229 True Labrador_retriever 1.096350e-01 True kuvasz 2.795070e-03 True
794 690932576555528194 https://pbs.twimg.com/media/CZavgf4WkAARpFM.jpg 1 snorkel 0.526536 False muzzle 4.808880e-02 False scuba_diver 3.422620e-02 False
795 690938899477221376 https://pbs.twimg.com/media/CZa1QnSWEAAEOVr.jpg 1 geyser 0.370318 False seashore 2.748880e-01 False beacon 4.639700e-02 False
796 690959652130045952 https://pbs.twimg.com/media/CZbIIM-WkAIPClg.jpg 2 golden_retriever 0.862964 True Labrador_retriever 4.486530e-02 True Saluki 1.246780e-02 True
797 691090071332753408 https://pbs.twimg.com/media/CZc-u7IXEAQHV1N.jpg 1 barrow 0.241637 False tub 2.384500e-01 False bathtub 1.672850e-01 False
798 691096613310316544 https://pbs.twimg.com/media/CZdEq-AUMAAWayR.jpg 1 borzoi 0.441269 True llama 2.782700e-01 False Arabian_camel 6.350350e-02 False
799 691321916024623104 https://pbs.twimg.com/media/CZgRmk0UcAAxeuQ.jpg 1 Rottweiler 0.508981 True German_shepherd 2.078970e-01 True kelpie 9.435330e-02 True
800 691416866452082688 https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg 1 Lakeland_terrier 0.530104 True Irish_terrier 1.973140e-01 True Airedale 8.251460e-02 True
801 691444869282295808 https://pbs.twimg.com/media/CZiBcJhWQAATXNK.jpg 2 Bernese_mountain_dog 0.767563 True Border_collie 8.580460e-02 True EntleBucher 4.376930e-02 True
802 691459709405118465 https://pbs.twimg.com/media/CZiO7mWUEAAa4zo.jpg 1 Shetland_sheepdog 0.551206 True collie 2.325440e-01 True Border_collie 9.521820e-02 True
803 691483041324204033 https://pbs.twimg.com/media/CZikKBIWYAA40Az.jpg 1 bloodhound 0.886232 True black-and-tan_coonhound 7.741960e-02 True Gordon_setter 9.826430e-03 True
804 691675652215414786 https://pbs.twimg.com/media/CZlTVL4WkAEpVR5.jpg 1 Chihuahua 0.182898 True teddy 1.280770e-01 False West_Highland_white_terrier 9.787480e-02 True
805 691756958957883396 https://pbs.twimg.com/media/CZmdSD8UcAAnY5R.jpg 1 Saint_Bernard 0.342571 True boxer 2.890960e-01 True Pembroke 7.646340e-02 True
806 691820333922455552 https://pbs.twimg.com/media/CZnW7JGW0AA83mn.jpg 1 minivan 0.332756 False sports_car 1.294520e-01 False limousine 7.393590e-02 False
807 692017291282812928 https://pbs.twimg.com/media/CZqKDZTVIAEvtbc.jpg 1 Tibetan_terrier 0.247565 True cocker_spaniel 1.213770e-01 True bow_tie 9.936250e-02 False
808 692142790915014657 https://pbs.twimg.com/media/CZr8LvyXEAABJ9k.jpg 3 toy_poodle 0.670068 True teddy 1.908980e-01 False miniature_poodle 3.217790e-02 True
809 692158366030913536 https://pbs.twimg.com/media/CZsKVxfWQAAXy2u.jpg 1 pug 0.956565 True swing 1.890670e-02 False toy_poodle 1.354440e-02 True
810 692187005137076224 https://pbs.twimg.com/media/CZskaEIWIAUeTr5.jpg 2 Siberian_husky 0.810592 True malamute 1.197450e-01 True Eskimo_dog 2.926480e-02 True
811 692417313023332352 https://pbs.twimg.com/media/CZv13u5WYAA6wQe.jpg 1 bison 0.208922 False mink 1.699450e-01 False polecat 1.444940e-01 False
812 692530551048294401 https://pbs.twimg.com/media/CZxc3G7WEAAM4Mv.jpg 1 Siberian_husky 0.486428 True Eskimo_dog 4.485180e-01 True white_wolf 4.150610e-02 False
813 692535307825213440 https://pbs.twimg.com/media/CZxhL2yWAAI_DHn.jpg 1 pug 0.413090 True French_bulldog 1.998650e-01 True Chihuahua 8.199060e-02 True
814 692568918515392513 https://pbs.twimg.com/media/CZx_wV2UMAArgsJ.jpg 2 golden_retriever 0.636845 True Labrador_retriever 1.633620e-01 True Pekinese 4.555400e-02 True
815 692752401762250755 https://pbs.twimg.com/tweet_video_thumb/CZ0mhd... 1 Samoyed 0.471276 True Siberian_husky 1.588500e-01 True Eskimo_dog 1.386720e-01 True
816 692828166163931137 https://pbs.twimg.com/media/CZ1riVOWwAATfGf.jpg 1 Samoyed 0.985857 True Arctic_fox 7.851640e-03 False white_wolf 3.277700e-03 False
817 692894228850999298 https://pbs.twimg.com/media/CZ2nn7BUsAI2Pj3.jpg 1 German_short-haired_pointer 0.876977 True bluetick 3.661510e-02 True basset 1.784770e-02 True
818 692901601640583168 https://pbs.twimg.com/media/CZ2uU37UcAANzmK.jpg 1 soft-coated_wheaten_terrier 0.403496 True cocker_spaniel 1.351640e-01 True golden_retriever 8.871870e-02 True
819 692905862751522816 https://pbs.twimg.com/media/CZ2yNKhWEAA_7cb.jpg 1 Mexican_hairless 0.162638 True Doberman 1.562870e-01 True Rhodesian_ridgeback 8.147780e-02 True
820 692919143163629568 https://pbs.twimg.com/media/CZ2-SRiWcAIjuM5.jpg 1 Saint_Bernard 0.612635 True English_springer 2.697440e-01 True boxer 4.866550e-02 True
821 693095443459342336 https://pbs.twimg.com/media/CZ5entwWYAAocEg.jpg 1 ice_lolly 0.660099 False neck_brace 3.956290e-02 False Yorkshire_terrier 3.348780e-02 True
822 693109034023534592 https://pbs.twimg.com/ext_tw_video_thumb/69310... 1 cocker_spaniel 0.740013 True Welsh_springer_spaniel 8.873900e-02 True golden_retriever 4.746980e-02 True
823 693155686491000832 https://pbs.twimg.com/media/CZ6VatdWwAAwHly.jpg 3 Shih-Tzu 0.697480 True Lhasa 2.001510e-01 True Tibetan_terrier 9.097040e-02 True
824 693231807727280129 https://pbs.twimg.com/media/CZ7aplIUsAAq-8s.jpg 1 vizsla 0.876413 True Chesapeake_Bay_retriever 7.839980e-02 True Rhodesian_ridgeback 3.219410e-02 True
825 693262851218264065 https://pbs.twimg.com/media/CZ724fDUYAAytS-.jpg 1 golden_retriever 0.989333 True Labrador_retriever 7.946440e-03 True kuvasz 7.489320e-04 True
826 693280720173801472 https://pbs.twimg.com/media/CZ8HIsGWIAA9eXX.jpg 1 Labrador_retriever 0.340008 True bull_mastiff 1.753160e-01 True box_turtle 1.643370e-01 False
827 693486665285931008 https://pbs.twimg.com/ext_tw_video_thumb/69348... 1 sea_lion 0.519811 False Siamese_cat 2.909710e-01 False black-footed_ferret 3.996670e-02 False
828 693590843962331137 https://pbs.twimg.com/media/CaAhMb1XEAAB6Bz.jpg 1 dining_table 0.383448 False grey_fox 1.031910e-01 False Siamese_cat 9.825580e-02 False
829 693622659251335168 https://pbs.twimg.com/media/CaA-IR9VIAAqg5l.jpg 1 malamute 0.449298 True Siberian_husky 3.850750e-01 True Eskimo_dog 1.634850e-01 True
830 693629975228977152 https://pbs.twimg.com/media/CaBEx3SWEAILZpi.jpg 1 pug 0.841987 True French_bulldog 6.979110e-02 True Boston_bull 3.871990e-02 True
831 693642232151285760 https://pbs.twimg.com/media/CaBP7i9W0AAJrIs.jpg 1 Scottish_deerhound 0.111893 True bluetick 7.430180e-02 True German_short-haired_pointer 6.700040e-02 True
832 693647888581312512 https://pbs.twimg.com/media/CaBVE80WAAA8sGk.jpg 1 washbasin 0.272451 False doormat 1.658710e-01 False bathtub 6.636840e-02 False
833 693942351086120961 https://pbs.twimg.com/media/CaFg41YWkAAdOjy.jpg 1 groenendael 0.550796 True Norwegian_elkhound 1.547700e-01 True schipperke 8.080190e-02 True
834 694001791655137281 https://pbs.twimg.com/media/CaGW8JQUMAEVtLl.jpg 1 Pembroke 0.769999 True Cardigan 2.292280e-01 True Chihuahua 2.468370e-04 True
835 694183373896572928 https://pbs.twimg.com/media/CaI8Fn0WAAIrFJN.jpg 1 teddy 0.441499 False Pekinese 8.087000e-02 True Shih-Tzu 7.209880e-02 True
836 694206574471057408 https://pbs.twimg.com/media/CaJRMPQWIAA1zL9.jpg 1 Shih-Tzu 0.352547 True toy_poodle 1.557200e-01 True Maltese_dog 1.166570e-01 True
837 694329668942569472 https://pbs.twimg.com/media/CaLBJmOWYAQt44t.jpg 1 boxer 0.990060 True bull_mastiff 7.436270e-03 True Saint_Bernard 1.617290e-03 True
838 694352839993344000 https://pbs.twimg.com/media/CaLWOPfWkAAo2Dt.jpg 2 Australian_terrier 0.407886 True Yorkshire_terrier 3.281730e-01 True silky_terrier 1.084040e-01 True
839 694356675654983680 https://pbs.twimg.com/media/CaLZtmsWQAApbFw.jpg 1 hamster 0.429871 False Pomeranian 1.442720e-01 True pretzel 1.272200e-01 False
840 694669722378485760 https://pbs.twimg.com/media/CaP2bS8WYAAsMdx.jpg 2 beaver 0.457094 False mongoose 2.282980e-01 False marmot 1.483090e-01 False
841 694905863685980160 https://pbs.twimg.com/media/CaTNMUgUYAAB6vs.jpg 1 bow_tie 0.449268 False fur_coat 1.390990e-01 False black-footed_ferret 8.223200e-02 False
842 695051054296211456 https://pbs.twimg.com/media/CaVRP4GWwAERC0v.jpg 1 Boston_bull 0.761454 True pug 7.539490e-02 True Chihuahua 4.159780e-02 True
843 695064344191721472 https://pbs.twimg.com/ext_tw_video_thumb/69506... 1 seat_belt 0.522211 False sunglasses 7.755210e-02 False ice_lolly 5.177400e-02 False
844 695074328191332352 https://pbs.twimg.com/media/CaVmajOWYAA1uNG.jpg 1 Shih-Tzu 0.510106 True Tibetan_terrier 7.198090e-02 True Lhasa 6.923100e-02 True
845 695095422348574720 https://pbs.twimg.com/media/CaV5mRDXEAAR8iG.jpg 1 papillon 0.227784 True Chihuahua 2.181280e-01 True Border_collie 9.345740e-02 True
846 695314793360662529 https://pbs.twimg.com/media/CaZBErSWEAEdXk_.jpg 2 Maltese_dog 0.678547 True Lhasa 1.250460e-01 True Pekinese 4.899880e-02 True
847 695409464418041856 https://pbs.twimg.com/media/CaaXN5LUYAEzAh-.jpg 1 pug 0.997445 True bull_mastiff 1.748550e-03 True Pekinese 3.044040e-04 True
848 695446424020918272 https://pbs.twimg.com/media/Caa407jWwAAJPH3.jpg 1 basenji 0.748904 True Cardigan 1.211020e-01 True Pembroke 1.117670e-01 True
849 695629776980148225 https://pbs.twimg.com/media/Cadfl6zWcAEZqIW.jpg 1 Old_English_sheepdog 0.693857 True otterhound 2.321170e-01 True West_Highland_white_terrier 1.286670e-02 True
850 695767669421768709 https://pbs.twimg.com/media/CafdAWCW0AE3Igl.jpg 1 soft-coated_wheaten_terrier 0.805139 True Lakeland_terrier 1.216620e-01 True Afghan_hound 2.330250e-02 True
851 695794761660297217 https://pbs.twimg.com/media/Caf1pQxWIAEme3q.jpg 1 Samoyed 0.962139 True Arctic_fox 3.055280e-02 False white_wolf 1.482340e-03 False
852 695816827381944320 https://pbs.twimg.com/media/CagJtjYW8AADoHu.jpg 1 Pomeranian 0.382234 True chow 2.083020e-01 True sunglasses 1.313280e-01 False
853 696405997980676096 https://pbs.twimg.com/media/Caohi_hWcAAQCni.jpg 1 borzoi 0.132845 True Walker_hound 8.600480e-02 True Great_Pyrenees 6.558230e-02 True
854 696488710901260288 https://pbs.twimg.com/media/CapsyfkWcAQ41uC.jpg 1 briard 0.369063 True Scotch_terrier 1.682040e-01 True giant_schnauzer 1.205530e-01 True
855 696713835009417216 https://pbs.twimg.com/media/Cas5h-wWcAA3nAc.jpg 1 car_mirror 0.379797 False Chesapeake_Bay_retriever 3.215890e-01 True vizsla 1.169310e-01 True
856 696754882863349760 https://pbs.twimg.com/media/Cate3eLUcAEIuph.jpg 1 weasel 0.137832 False toy_poodle 9.837810e-02 True Scottish_deerhound 9.739670e-02 True
857 696877980375769088 https://pbs.twimg.com/media/CavO0uuWEAE96Ed.jpg 1 space_heater 0.206876 False spatula 1.234500e-01 False vacuum 1.192180e-01 False
858 696886256886657024 https://pbs.twimg.com/media/CavWWdFWAAArflW.jpg 1 kuvasz 0.383941 True golden_retriever 2.890850e-01 True dingo 5.654810e-02 False
859 696894894812565505 https://pbs.twimg.com/media/CaveNQcVIAECyBr.jpg 1 Appenzeller 0.665628 True beagle 1.047950e-01 True Greater_Swiss_Mountain_dog 6.786800e-02 True
860 696900204696625153 https://pbs.twimg.com/media/CavjCdJW0AIB5Oz.jpg 1 Chihuahua 0.297735 True Pembroke 2.669530e-01 True basenji 1.368140e-01 True
861 697242256848379904 https://pbs.twimg.com/media/Ca0aIR9WcAAHiPy.jpg 1 grey_fox 0.236031 False Siamese_cat 1.657910e-01 False Eskimo_dog 6.353280e-02 True
862 697255105972801536 https://pbs.twimg.com/media/Ca0lzzmWwAA5u56.jpg 1 Great_Dane 0.173989 True malinois 1.658880e-01 True Doberman 1.198900e-01 True
863 697259378236399616 https://pbs.twimg.com/media/Ca0ps3AXEAAnp9m.jpg 1 Great_Dane 0.999223 True boxer 1.865250e-04 True whippet 1.510710e-04 True
864 697270446429966336 https://pbs.twimg.com/media/Ca0zxGjW8AEfyYl.jpg 1 toy_poodle 0.880014 True miniature_poodle 1.001360e-01 True Norfolk_terrier 7.027060e-03 True
865 697463031882764288 https://pbs.twimg.com/media/Ca3i7CzXIAMLhg8.jpg 1 Labrador_retriever 0.999885 True golden_retriever 9.758170e-05 True pug 8.267760e-06 True
866 697482927769255936 https://pbs.twimg.com/media/Ca31BTgWwAA4uNU.jpg 1 bath_towel 0.110587 False Christmas_stocking 1.085730e-01 False weasel 1.054420e-01 False
867 697575480820686848 https://pbs.twimg.com/media/Ca5JMvMUsAAGMll.jpg 1 Siamese_cat 0.256698 False whippet 1.198050e-01 True bull_mastiff 1.025950e-01 True
868 697596423848730625 https://pbs.twimg.com/media/Ca5cPrJXIAImHtD.jpg 1 Shetland_sheepdog 0.621668 True collie 3.665780e-01 True Pembroke 7.698190e-03 True
869 697616773278015490 https://pbs.twimg.com/media/Ca5uv7RVAAA_QEg.jpg 1 Lhasa 0.521931 True Shih-Tzu 4.034510e-01 True Tibetan_terrier 3.991220e-02 True
870 697881462549430272 https://pbs.twimg.com/media/Ca9feqDUAAA_z7T.jpg 1 washbasin 0.176423 False paper_towel 1.674620e-01 False toilet_tissue 9.802910e-02 False
871 697943111201378304 https://pbs.twimg.com/media/Ca-XjfiUsAAUa8f.jpg 1 Great_Dane 0.126924 True Greater_Swiss_Mountain_dog 1.100370e-01 True German_short-haired_pointer 9.081600e-02 True
872 697990423684476929 https://pbs.twimg.com/media/Ca_ClYOW0AAsvpE.jpg 2 Pembroke 0.984783 True Cardigan 1.501800e-02 True Shetland_sheepdog 7.358600e-05 True
873 697995514407682048 https://pbs.twimg.com/media/Ca_HN8UWEAEB-ga.jpg 1 Staffordshire_bullterrier 0.280222 True Boston_bull 1.614780e-01 True American_Staffordshire_terrier 1.268840e-01 True
874 698178924120031232 https://pbs.twimg.com/media/CbBuBhbWwAEGH29.jpg 1 Chesapeake_Bay_retriever 0.351868 True malinois 2.077530e-01 True Labrador_retriever 1.546060e-01 True
875 698195409219559425 https://pbs.twimg.com/media/CbB9BTqW8AEVc2A.jpg 1 Labrador_retriever 0.643690 True American_Staffordshire_terrier 1.026840e-01 True dalmatian 5.000780e-02 True
876 698262614669991936 https://pbs.twimg.com/media/CbC6JL_WEAI_PhH.jpg 1 Italian_greyhound 0.107948 True basset 7.523000e-02 True Staffordshire_bullterrier 6.943610e-02 True
877 698342080612007937 https://pbs.twimg.com/ext_tw_video_thumb/69834... 1 boxer 0.883048 True Saint_Bernard 3.057940e-02 True Staffordshire_bullterrier 1.299410e-02 True
878 698355670425473025 https://pbs.twimg.com/media/CbEOxQXW0AEIYBu.jpg 1 pug 0.990191 True Pekinese 2.798540e-03 True sunglasses 1.309520e-03 False
879 698549713696649216 https://pbs.twimg.com/media/CbG_QRJXEAALVWy.jpg 1 French_bulldog 0.998544 True Boston_bull 1.403940e-03 True boxer 2.322000e-05 True
880 698635131305795584 https://pbs.twimg.com/ext_tw_video_thumb/69863... 1 Samoyed 0.158464 True kuvasz 8.940250e-02 True West_Highland_white_terrier 2.503730e-02 True
881 698703483621523456 https://pbs.twimg.com/media/CbJLG0HWwAAV-ug.jpg 1 Brittany_spaniel 0.931963 True Welsh_springer_spaniel 3.069490e-02 True beagle 1.289610e-02 True
882 698710712454139905 https://pbs.twimg.com/media/CbJRrigW0AIcJ2N.jpg 1 Samoyed 0.329895 True shoji 1.657720e-01 False prison 1.035960e-01 False
883 698907974262222848 https://pbs.twimg.com/media/CbMFFssWIAAyuOd.jpg 3 German_short-haired_pointer 0.983131 True bluetick 5.557720e-03 True curly-coated_retriever 3.322210e-03 True
884 698953797952008193 https://pbs.twimg.com/media/CbMuxV5WEAAIBjy.jpg 1 Italian_greyhound 0.382378 True redbone 1.022550e-01 True shower_cap 7.683370e-02 False
885 698989035503689728 https://pbs.twimg.com/media/CbNO0DaW0AARcki.jpg 1 Norfolk_terrier 0.246340 True Irish_terrier 2.433490e-01 True golden_retriever 8.587100e-02 True
886 699036661657767936 https://pbs.twimg.com/media/CbN6IW4UYAAyVDA.jpg 1 Chihuahua 0.222943 True toyshop 1.799380e-01 False Weimaraner 1.630330e-01 True
887 699072405256409088 https://pbs.twimg.com/ext_tw_video_thumb/69907... 1 Shih-Tzu 0.599587 True Pekinese 2.130690e-01 True Maltese_dog 1.542930e-01 True
888 699079609774645248 https://pbs.twimg.com/media/CbOhMUDXIAACIWR.jpg 3 schipperke 0.667324 True Chesapeake_Bay_retriever 1.195500e-01 True kelpie 9.759950e-02 True
889 699088579889332224 https://pbs.twimg.com/media/CbOpWswWEAE9kvX.jpg 1 mousetrap 0.456186 False banded_gecko 2.586770e-01 False common_iguana 6.178260e-02 False
890 699323444782047232 https://pbs.twimg.com/media/CbR-9edXIAEHJKi.jpg 1 Labrador_retriever 0.309696 True doormat 3.037000e-01 False sliding_door 7.726600e-02 False
891 699370870310113280 https://pbs.twimg.com/media/CbSqE0rVIAEOPE4.jpg 1 cairn 0.337557 True Chihuahua 2.091300e-01 True Border_terrier 1.369460e-01 True
892 699413908797464576 https://pbs.twimg.com/media/CbTRPXdW8AQMZf7.jpg 1 Samoyed 0.517479 True malamute 1.559350e-01 True Eskimo_dog 9.500090e-02 True
893 699423671849451520 https://pbs.twimg.com/media/CbTaHrRW0AABXmG.jpg 1 pug 0.997860 True French_bulldog 1.824860e-03 True bull_mastiff 2.989400e-04 True
894 699434518667751424 https://pbs.twimg.com/media/CbTj--1XEAIZjc_.jpg 1 golden_retriever 0.836572 True kuvasz 1.059460e-01 True Labrador_retriever 2.514390e-02 True
895 699446877801091073 https://pbs.twimg.com/media/CbTvNpoW0AEemnx.jpg 3 Pembroke 0.969400 True Cardigan 2.605880e-02 True Chihuahua 3.505470e-03 True
896 699691744225525762 https://pbs.twimg.com/media/CbXN7aPWIAE0Xt1.jpg 1 hippopotamus 0.982269 False sea_lion 6.295150e-03 False dugong 5.767950e-03 False
897 699775878809702401 https://pbs.twimg.com/media/CbYac83W4AAUH1O.jpg 1 Dandie_Dinmont 0.271683 True Old_English_sheepdog 1.649310e-01 True otterhound 1.059180e-01 True
898 699779630832685056 https://pbs.twimg.com/media/CbYd3C9WEAErJ4Z.jpg 1 malinois 0.706038 True German_shepherd 1.656550e-01 True Great_Dane 5.904750e-02 True
899 699788877217865730 https://pbs.twimg.com/media/CbYmRHyWEAASNzm.jpg 1 Border_terrier 0.355060 True toy_poodle 1.697360e-01 True Norwegian_elkhound 9.988370e-02 True
900 699801817392291840 https://pbs.twimg.com/media/CbYyCMcWIAAHHjF.jpg 2 golden_retriever 0.808978 True Irish_setter 4.242810e-02 True Labrador_retriever 2.353640e-02 True
901 700002074055016451 https://pbs.twimg.com/media/CbboKP4WIAAw8xq.jpg 1 Chihuahua 0.369488 True schipperke 2.433670e-01 True pug 1.616140e-01 True
902 700029284593901568 https://pbs.twimg.com/media/CbcA673XIAAsytQ.jpg 1 West_Highland_white_terrier 0.726571 True Maltese_dog 1.768280e-01 True Dandie_Dinmont 7.013380e-02 True
903 700062718104104960 https://pbs.twimg.com/media/CbcfUxoUAAAlHGK.jpg 1 hummingbird 0.180998 False peacock 1.351790e-01 False eel 7.537100e-02 False
904 700143752053182464 https://pbs.twimg.com/media/CbdpBmLUYAY9SgQ.jpg 1 golden_retriever 0.532460 True crossword_puzzle 1.037960e-01 False binder 1.003710e-01 False
905 700151421916807169 https://pbs.twimg.com/media/CbdwATgWwAABGID.jpg 1 tennis_ball 0.328236 False Italian_greyhound 1.768380e-01 True Staffordshire_bullterrier 1.340800e-01 True
906 700167517596164096 https://pbs.twimg.com/media/Cbd-o8hWwAE4OFm.jpg 1 beagle 0.162585 True Pembroke 1.204810e-01 True Siberian_husky 1.102840e-01 True
907 700462010979500032 https://pbs.twimg.com/media/CbiKe7-W0AIVNNr.jpg 1 hamster 0.678651 False Pomeranian 1.102680e-01 True Angora 1.041390e-01 False
908 700505138482569216 https://pbs.twimg.com/media/Cbixs3vUUAAqHHN.jpg 1 bath_towel 0.449684 False Norwegian_elkhound 1.602050e-01 True Great_Dane 4.866580e-02 True
909 700518061187723268 https://pbs.twimg.com/media/Cbi9dI_UYAAgkyC.jpg 1 American_Staffordshire_terrier 0.569501 True Staffordshire_bullterrier 2.113080e-01 True Chihuahua 1.218390e-01 True
910 700747788515020802 https://pbs.twimg.com/media/CbmOY41UAAQylmA.jpg 1 Great_Pyrenees 0.481333 True Samoyed 3.117690e-01 True Maltese_dog 7.496210e-02 True
911 700796979434098688 https://pbs.twimg.com/media/Cbm7IeUXIAA6Lc-.jpg 1 tailed_frog 0.652712 False tree_frog 2.802120e-01 False bullfrog 4.017750e-02 False
912 700847567345688576 https://pbs.twimg.com/media/CbnpI_1XIAAiRAz.jpg 1 Rhodesian_ridgeback 0.252514 True redbone 1.530050e-01 True whippet 1.351990e-01 True
913 700864154249383937 https://pbs.twimg.com/media/Cbn4OqKWwAADGWt.jpg 1 kuvasz 0.805857 True Great_Pyrenees 1.872720e-01 True Samoyed 3.490900e-03 True
914 700890391244103680 https://pbs.twimg.com/media/CboQFolWIAE04qE.jpg 1 white_wolf 0.166563 False schipperke 1.223560e-01 True West_Highland_white_terrier 1.192470e-01 True
915 701214700881756160 https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg 1 Chihuahua 0.615163 True Pembroke 1.595090e-01 True basenji 8.446570e-02 True
916 701545186879471618 https://pbs.twimg.com/media/CbxjnyOWAAAWLUH.jpg 1 Border_collie 0.280893 True Cardigan 1.125500e-01 True toy_terrier 5.331720e-02 True
917 701570477911896070 https://pbs.twimg.com/media/Cbx6nz1WIAA0QSW.jpg 1 Yorkshire_terrier 0.907990 True silky_terrier 7.688290e-02 True Australian_terrier 8.472760e-03 True
918 701601587219795968 https://pbs.twimg.com/media/CbyW7B0W8AIX8kX.jpg 1 Chihuahua 0.993661 True Pembroke 1.504870e-03 True toy_terrier 8.666070e-04 True
919 701889187134500865 https://pbs.twimg.com/media/Cb2cfd9WAAEL-zk.jpg 1 French_bulldog 0.902856 True Staffordshire_bullterrier 2.263410e-02 True soap_dispenser 1.197320e-02 False
920 701952816642965504 https://pbs.twimg.com/media/Cb3WXMUUMAIuzL8.jpg 1 toy_poodle 0.331707 True miniature_poodle 2.724850e-01 True standard_poodle 1.694150e-01 True
921 701981390485725185 https://pbs.twimg.com/media/Cb3wWWbWEAAy06k.jpg 1 Pomeranian 0.491022 True weasel 1.308790e-01 False Yorkshire_terrier 9.924100e-02 True
922 702217446468493312 https://pbs.twimg.com/media/Cb7HCMkWEAAV9zY.jpg 1 golden_retriever 0.242419 True chow 2.268000e-01 True cocker_spaniel 1.940860e-01 True
923 702276748847800320 https://pbs.twimg.com/media/Cb78-nOWIAENNRc.jpg 1 Boston_bull 0.697303 True French_bulldog 2.390150e-01 True American_Staffordshire_terrier 1.983810e-02 True
924 702321140488925184 https://pbs.twimg.com/media/Cb8lWafWEAA2q93.jpg 3 West_Highland_white_terrier 0.769159 True Scotch_terrier 6.436880e-02 True Old_English_sheepdog 4.376340e-02 True
925 702539513671897089 https://pbs.twimg.com/media/Cb_r8qTUsAASgdF.jpg 3 Pomeranian 0.714367 True Shih-Tzu 4.057410e-02 True silky_terrier 3.251050e-02 True
926 702598099714314240 https://pbs.twimg.com/media/CcAhPevW8AAoknv.jpg 1 kelpie 0.219179 True badger 1.335840e-01 False Siamese_cat 7.444000e-02 False
927 702671118226825216 https://pbs.twimg.com/media/CcBjp2nWoAA8w-2.jpg 1 bloodhound 0.381227 True Sussex_spaniel 2.120170e-01 True clumber 1.286220e-01 True
928 702684942141153280 https://pbs.twimg.com/media/CcBwOn0XEAA7bNQ.jpg 1 golden_retriever 0.514085 True Chesapeake_Bay_retriever 1.732240e-01 True Brittany_spaniel 1.183840e-01 True
929 702932127499816960 https://pbs.twimg.com/media/CcFRCfRW4AA5a72.jpg 1 wallaby 0.410710 False wombat 2.393320e-01 False beaver 1.496050e-01 False
930 703041949650034688 https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg 1 hippopotamus 0.581403 False doormat 1.524450e-01 False sea_lion 2.636430e-02 False
931 703079050210877440 https://pbs.twimg.com/media/CcHWqQCW8AEb0ZH.jpg 2 Pembroke 0.778503 True Shetland_sheepdog 9.383390e-02 True Cardigan 6.029640e-02 True
932 703268521220972544 https://pbs.twimg.com/media/CcKC-5LW4AAK-nb.jpg 1 wool 0.525434 False fur_coat 2.363910e-01 False kuvasz 3.824300e-02 True
933 703356393781329922 https://pbs.twimg.com/media/CcLS6QKUcAAUuPa.jpg 1 Border_collie 0.894842 True collie 9.736370e-02 True English_springer 3.036740e-03 True
934 703382836347330562 https://pbs.twimg.com/media/CcLq7ipW4AArSGZ.jpg 2 golden_retriever 0.945664 True standard_poodle 1.439200e-02 True Tibetan_mastiff 1.202170e-02 True
935 703407252292673536 https://pbs.twimg.com/media/CcMBJODUsAI5-A9.jpg 1 doormat 0.201058 False turnstile 8.858320e-02 False carton 8.292380e-02 False
936 703425003149250560 https://pbs.twimg.com/media/CcMRSwUW8AAxxNC.jpg 1 miniature_pinscher 0.292866 True sleeping_bag 1.421220e-01 False Italian_greyhound 7.084900e-02 True
937 703611486317502464 https://pbs.twimg.com/media/CcO66OjXEAASXmH.jpg 1 Pembroke 0.756441 True basenji 1.266210e-01 True Cardigan 8.011670e-02 True
938 703631701117943808 https://pbs.twimg.com/media/CcPNS4yW8AAd-Et.jpg 2 window_shade 0.909533 False window_screen 1.142660e-02 False brass 8.882100e-03 False
939 703769065844768768 https://pbs.twimg.com/media/CcRKOzyXEAQO_HN.jpg 2 boxer 0.838994 True Greater_Swiss_Mountain_dog 8.880030e-02 True bull_mastiff 3.168390e-02 True
940 703774238772166656 https://pbs.twimg.com/media/CcRO8FmW4AAzazk.jpg 1 Labrador_retriever 0.990119 True Chesapeake_Bay_retriever 8.025580e-03 True curly-coated_retriever 1.242290e-03 True
941 704054845121142784 https://pbs.twimg.com/media/CcVOJEcXEAM0FHL.jpg 1 Great_Pyrenees 0.667939 True kuvasz 2.287640e-01 True golden_retriever 4.388540e-02 True
942 704113298707505153 https://pbs.twimg.com/media/CcWDTerUAAALORn.jpg 2 otter 0.945537 False mink 1.823110e-02 False sea_lion 1.586080e-02 False
943 704347321748819968 https://pbs.twimg.com/media/CcZYJniXEAAEJRF.jpg 1 teddy 0.233378 False feather_boa 8.847440e-02 False Brittany_spaniel 8.291730e-02 True
944 704364645503647744 https://pbs.twimg.com/media/CcZn6RWWIAAmOZG.jpg 1 Pembroke 0.980695 True Cardigan 1.850440e-02 True Chihuahua 2.152930e-04 True
945 704480331685040129 https://pbs.twimg.com/media/CcbRIAgXIAQaKHQ.jpg 1 Samoyed 0.979206 True Pomeranian 7.185400e-03 True Arctic_fox 6.438090e-03 False
946 704499785726889984 https://pbs.twimg.com/media/Ccbi0UGWoAA4fwg.jpg 1 Chihuahua 0.376541 True Siamese_cat 9.805710e-02 False Labrador_retriever 8.521090e-02 True
947 704761120771465216 https://pbs.twimg.com/media/CcfQgHVWoAAxauy.jpg 1 Siamese_cat 0.202294 False Chihuahua 1.004180e-01 True basenji 7.209650e-02 True
948 704819833553219584 https://pbs.twimg.com/media/CcgF5ovW8AACrEU.jpg 1 guinea_pig 0.994776 False hamster 4.068790e-03 False wood_rabbit 2.058690e-04 False
949 704847917308362754 https://pbs.twimg.com/media/CcgfcANW4AA9hzr.jpg 1 golden_retriever 0.857240 True Labrador_retriever 1.354600e-01 True Tibetan_mastiff 1.903320e-03 True
950 704859558691414016 https://pbs.twimg.com/media/CcgqBNVW8AE76lv.jpg 1 pug 0.284428 True teddy 1.563390e-01 False mitten 1.389150e-01 False
951 704871453724954624 https://pbs.twimg.com/media/Ccg02LiWEAAJHw1.jpg 1 Norfolk_terrier 0.689504 True soft-coated_wheaten_terrier 1.014800e-01 True Norwich_terrier 5.577850e-02 True
952 705066031337840642 https://pbs.twimg.com/media/CcjlzRkW0AMqmWg.jpg 1 Airedale 0.868658 True Irish_terrier 2.758710e-02 True otterhound 2.532360e-02 True
953 705102439679201280 https://pbs.twimg.com/media/CckG63qUsAALbIr.jpg 1 collie 0.457672 True chow 2.791010e-01 True Pomeranian 7.692230e-02 True
954 705223444686888960 https://pbs.twimg.com/media/Ccl0-HVVAAAf8aK.jpg 1 Egyptian_cat 0.090508 False Chesapeake_Bay_retriever 7.737330e-02 True Mexican_hairless 4.947150e-02 True
955 705239209544720384 https://pbs.twimg.com/media/CcmDUjFW8AAqAjc.jpg 1 Chihuahua 0.157950 True toy_terrier 8.992030e-02 True Mexican_hairless 6.322450e-02 True
956 705428427625635840 https://pbs.twimg.com/media/CcovaMUXIAApFDl.jpg 1 Chihuahua 0.774792 True quilt 7.307940e-02 False Pembroke 2.236510e-02 True
957 705442520700944385 https://pbs.twimg.com/media/Cco8OmOXIAE0aCu.jpg 1 Great_Pyrenees 0.309106 True kuvasz 2.245560e-01 True seat_belt 2.021000e-01 False
958 705475953783398401 https://pbs.twimg.com/media/CcpaoR9WAAAKlJJ.jpg 1 golden_retriever 0.908784 True Labrador_retriever 3.036120e-02 True tennis_ball 4.995620e-03 False
959 705591895322394625 https://pbs.twimg.com/media/CcrEFQdUcAA7CJf.jpg 1 basenji 0.877207 True Italian_greyhound 4.785420e-02 True miniature_pinscher 3.563810e-02 True
960 705786532653883392 https://pbs.twimg.com/media/Cct1G6vVAAI9ZjF.jpg 1 web_site 0.550294 False Labrador_retriever 1.484960e-01 True golden_retriever 1.484820e-01 True
961 705898680587526145 https://pbs.twimg.com/media/CcvbGj5W8AARjB6.jpg 1 collie 0.808276 True Border_collie 5.943700e-02 True groenendael 2.672030e-02 True
962 705970349788291072 https://pbs.twimg.com/media/CcwcSS9WwAALE4f.jpg 1 golden_retriever 0.776346 True Labrador_retriever 1.124130e-01 True chow 3.695290e-02 True
963 705975130514706432 https://pbs.twimg.com/media/CcwgjmuXIAEQoSd.jpg 1 Staffordshire_bullterrier 0.587764 True American_Staffordshire_terrier 2.814290e-01 True bull_mastiff 9.479810e-02 True
964 706166467411222528 https://pbs.twimg.com/media/CczOp_OWoAAo5zR.jpg 1 Samoyed 0.430418 True kuvasz 2.796000e-01 True Great_Pyrenees 1.174800e-01 True
965 706265994973601792 https://pbs.twimg.com/media/Cc0pLU0WAAEfGEw.jpg 1 papillon 0.743715 True Pekinese 1.140420e-01 True Saint_Bernard 4.771520e-02 True
966 706291001778950144 https://pbs.twimg.com/media/Cc0_2tXXEAA2iTY.jpg 1 Border_terrier 0.587101 True bull_mastiff 1.640870e-01 True Staffordshire_bullterrier 1.050110e-01 True
967 706310011488698368 https://pbs.twimg.com/media/Cc1RNHLW4AACG6H.jpg 1 Pembroke 0.698165 True Chihuahua 1.058340e-01 True bloodhound 6.203040e-02 True
968 706346369204748288 https://pbs.twimg.com/media/Cc1yRE2WoAAgxFQ.jpg 1 Tibetan_mastiff 0.956462 True Rottweiler 2.538090e-02 True Appenzeller 8.679210e-03 True
969 706516534877929472 https://pbs.twimg.com/media/Cc4NCQiXEAEx2eJ.jpg 1 golden_retriever 0.772685 True Labrador_retriever 7.166530e-02 True golfcart 2.099310e-02 False
970 706538006853918722 https://pbs.twimg.com/media/Cc4gjxqW4AIoThO.jpg 1 chow 0.541794 True Pembroke 9.491840e-02 True Pomeranian 8.543940e-02 True
971 706593038911545345 https://pbs.twimg.com/media/Cc5Snc7XIAAMidF.jpg 1 four-poster 0.696423 False quilt 1.893120e-01 False pillow 2.940880e-02 False
972 706644897839910912 https://pbs.twimg.com/ext_tw_video_thumb/70664... 1 space_heater 0.137871 False Chihuahua 1.329280e-01 True cougar 1.138660e-01 False
973 706681918348251136 https://pbs.twimg.com/media/Cc6jcYRXIAAFuox.jpg 1 toy_poodle 0.717584 True miniature_poodle 1.514330e-01 True Norwich_terrier 4.708700e-02 True
974 706901761596989440 https://pbs.twimg.com/media/Cc9rZlBWwAA56Ra.jpg 1 wild_boar 0.859499 False hog 1.289810e-01 False warthog 1.131780e-02 False
975 707014260413456384 https://pbs.twimg.com/media/Cc_RsVlXEAIzzlX.jpg 1 Chihuahua 0.583780 True Italian_greyhound 1.296830e-01 True toy_terrier 8.915270e-02 True
976 707021089608753152 https://pbs.twimg.com/media/Cc_XtkRW8AEE7Fn.jpg 2 cocker_spaniel 0.559658 True golden_retriever 3.146730e-01 True Pekinese 6.667170e-02 True
977 707038192327901184 https://pbs.twimg.com/media/Cc_ney1W4AANuY3.jpg 1 pug 0.642426 True llama 5.730620e-02 False French_bulldog 5.418650e-02 True
978 707059547140169728 https://pbs.twimg.com/media/Cc_64zVWEAAeXs7.jpg 1 Samoyed 0.897312 True Great_Pyrenees 3.918020e-02 True kuvasz 1.951600e-02 True
979 707297311098011648 https://pbs.twimg.com/media/CdDTJLMW4AEST--.jpg 1 Blenheim_spaniel 0.370717 True Shih-Tzu 2.015660e-01 True black-footed_ferret 1.015590e-01 False
980 707315916783140866 https://pbs.twimg.com/media/CdDkEkHWwAAAeUJ.jpg 2 Bernese_mountain_dog 0.979235 True Shetland_sheepdog 1.103680e-02 True Appenzeller 3.971110e-03 True
981 707377100785885184 https://pbs.twimg.com/media/CdEbt0NXIAQH3Aa.jpg 1 golden_retriever 0.637225 True bloodhound 9.454210e-02 True cocker_spaniel 6.979710e-02 True
982 707387676719185920 https://pbs.twimg.com/media/CdElVm7XEAADP6o.jpg 1 Chihuahua 0.888468 True Italian_greyhound 8.863460e-02 True toy_terrier 1.593830e-02 True
983 707411934438625280 https://pbs.twimg.com/media/CdE7ZktXIAEiWLj.jpg 1 Lakeland_terrier 0.738277 True Airedale 2.851490e-02 True giant_schnauzer 2.487630e-02 True
984 707420581654872064 https://pbs.twimg.com/media/CdFDQVgWIAArslx.jpg 1 ram 0.518215 False kuvasz 1.493910e-01 True Great_Pyrenees 1.060030e-01 True
985 707610948723478529 https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg 1 golden_retriever 0.383223 True cocker_spaniel 1.659300e-01 True Chesapeake_Bay_retriever 1.181990e-01 True
986 707693576495472641 https://pbs.twimg.com/media/CdI7jDnW0AA2dtO.jpg 1 bathtub 0.499525 False tub 4.880140e-01 False washbasin 9.298250e-03 False
987 707741517457260545 https://pbs.twimg.com/media/CdJnJ1dUEAARNcf.jpg 1 whippet 0.738371 True Italian_greyhound 1.917890e-01 True American_Staffordshire_terrier 2.012570e-02 True
988 707776935007539200 https://pbs.twimg.com/media/CdKHWimWoAABs08.jpg 1 miniature_pinscher 0.890426 True toy_terrier 5.133470e-02 True Chihuahua 1.801530e-02 True
989 707969809498152960 https://pbs.twimg.com/media/CdM2xRpXEAUsR4k.jpg 1 toy_poodle 0.908491 True miniature_poodle 8.265160e-02 True teddy 5.786130e-03 False
990 707995814724026368 https://pbs.twimg.com/media/CdNOb17WwAA5z4A.jpg 1 agama 0.172087 False Gila_monster 1.269780e-01 False lumbermill 5.040000e-02 False
991 708026248782585858 https://pbs.twimg.com/ext_tw_video_thumb/70802... 1 malinois 0.786468 True Chesapeake_Bay_retriever 6.897890e-02 True Siamese_cat 2.930440e-02 False
992 708109389455101952 https://pbs.twimg.com/media/CdO1u9vWAAApj2V.jpg 1 Staffordshire_bullterrier 0.516106 True American_Staffordshire_terrier 2.360750e-01 True kelpie 6.974950e-02 True
993 708119489313951744 https://pbs.twimg.com/media/CdO-6x5W8AENSBJ.jpg 1 Norwich_terrier 0.264483 True Norfolk_terrier 2.587860e-01 True chow 9.689870e-02 True
994 708130923141795840 https://pbs.twimg.com/media/CdPJUWIWIAAIchl.jpg 1 French_bulldog 0.710354 True Chihuahua 2.623020e-01 True Cardigan 6.903820e-03 True
995 708149363256774660 https://pbs.twimg.com/media/CdPaEkHW8AA-Wom.jpg 1 Cardigan 0.350993 True basset 1.645550e-01 True toy_terrier 8.048360e-02 True
996 708349470027751425 https://pbs.twimg.com/media/CdSQFWOWAAApgfq.jpg 1 muzzle 0.243890 False basenji 1.871580e-01 True Boston_bull 9.272700e-02 True
997 708356463048204288 https://pbs.twimg.com/media/CdSWcc1XIAAXc6H.jpg 2 pug 0.871283 True French_bulldog 4.182000e-02 True bath_towel 1.522800e-02 False
998 708469915515297792 https://pbs.twimg.com/media/CdT9n7mW0AQcpZU.jpg 1 Chihuahua 0.748163 True toy_terrier 1.277170e-01 True Pembroke 4.214100e-02 True
999 708479650088034305 https://pbs.twimg.com/media/CdUGcLMWAAI42q0.jpg 1 Shih-Tzu 0.218479 True Lhasa 2.019660e-01 True Norfolk_terrier 1.652250e-01 True
1000 708711088997666817 https://pbs.twimg.com/media/CdXY-GHWoAALing.jpg 2 tennis_ball 0.912961 False German_short-haired_pointer 5.269460e-02 True Labrador_retriever 1.847740e-02 True
1001 708738143638450176 https://pbs.twimg.com/media/CdXxlFPWwAABaOv.jpg 1 Pomeranian 0.933457 True Samoyed 5.722080e-02 True West_Highland_white_terrier 9.041510e-04 True
1002 708810915978854401 https://pbs.twimg.com/media/CdYzwuYUIAAHPkB.jpg 2 golden_retriever 0.976139 True Labrador_retriever 1.630090e-02 True Norfolk_terrier 1.871370e-03 True
1003 708834316713893888 https://pbs.twimg.com/media/CdZI_bpWEAAm1fs.jpg 1 Eskimo_dog 0.283945 True giant_panda 2.182520e-01 False malamute 1.804010e-01 True
1004 708845821941387268 https://pbs.twimg.com/media/CdZTgynWwAATZcx.jpg 1 schipperke 0.745640 True kelpie 1.678530e-01 True Boston_bull 1.476290e-02 True
1005 709042156699303936 https://pbs.twimg.com/media/CdcGBB3WwAAGBuU.jpg 1 hotdog 0.826579 False Rottweiler 6.817930e-02 True Labrador_retriever 4.921790e-02 True
1006 709158332880297985 https://pbs.twimg.com/media/CddvvSwWoAUObQw.jpg 1 Siberian_husky 0.212957 True Eskimo_dog 1.788870e-01 True Labrador_retriever 1.742180e-01 True
1007 709198395643068416 https://pbs.twimg.com/media/CdeUKpcWoAAJAWJ.jpg 1 borzoi 0.490783 True wire-haired_fox_terrier 8.351330e-02 True English_setter 8.318430e-02 True
1008 709207347839836162 https://pbs.twimg.com/media/CdecUSzUIAAHCvg.jpg 1 Chihuahua 0.948323 True Italian_greyhound 1.773030e-02 True quilt 1.668790e-02 False
1009 709225125749587968 https://pbs.twimg.com/media/Cdese-zWEAArIqE.jpg 1 Labrador_retriever 0.271109 True Pomeranian 1.504870e-01 True golden_retriever 1.455780e-01 True
1010 709409458133323776 https://pbs.twimg.com/media/CdhUIMSUIAA4wYK.jpg 1 Shetland_sheepdog 0.797450 True collie 5.405530e-02 True keeshond 3.167330e-02 True
1011 709449600415961088 https://pbs.twimg.com/media/Cdh4pgAW0AEKJ_a.jpg 2 Maltese_dog 0.780187 True Dandie_Dinmont 7.442870e-02 True Norfolk_terrier 3.377620e-02 True
1012 709519240576036864 https://pbs.twimg.com/media/Cdi3-f7W8AUOm9T.jpg 1 cocker_spaniel 0.414982 True Newfoundland 2.254820e-01 True flat-coated_retriever 1.967890e-01 True
1013 709556954897764353 https://pbs.twimg.com/media/CdjaSFCWAAAJZh3.jpg 2 golden_retriever 0.790026 True kuvasz 1.050310e-01 True Labrador_retriever 8.705120e-02 True
1014 709566166965075968 https://pbs.twimg.com/media/Cdjiqi6XIAIUOg-.jpg 1 chow 0.999837 True Tibetan_mastiff 1.169070e-04 True Australian_terrier 1.133840e-05 True
1015 709852847387627521 https://pbs.twimg.com/media/CdnnZhhWAAEAoUc.jpg 2 Chihuahua 0.945629 True Pomeranian 1.920360e-02 True West_Highland_white_terrier 1.013420e-02 True
1016 709901256215666688 https://pbs.twimg.com/media/CdoTbL_XIAAitq2.jpg 2 bib 0.998814 False handkerchief 5.117730e-04 False umbrella 2.244770e-04 False
1017 709918798883774466 https://pbs.twimg.com/media/CdojYQmW8AApv4h.jpg 2 Pembroke 0.956222 True Cardigan 2.072730e-02 True Chihuahua 7.912180e-03 True
1018 710117014656950272 https://pbs.twimg.com/media/CdrXp9dWoAAcRfn.jpg 2 toy_poodle 0.802092 True miniature_poodle 1.116470e-01 True cocker_spaniel 6.286620e-02 True
1019 710140971284037632 https://pbs.twimg.com/media/Cdrtcr-W4AAqi5H.jpg 1 Pekinese 0.953170 True papillon 1.951690e-02 True Japanese_spaniel 5.820510e-03 True
1020 710153181850935296 https://pbs.twimg.com/media/Cdr4jO2UAAAIo6W.jpg 2 cowboy_hat 0.979053 False sombrero 1.068250e-02 False cocker_spaniel 2.712960e-03 True
1021 710269109699739648 https://pbs.twimg.com/media/Cdth_KyWEAEXH3u.jpg 1 pug 0.415495 True German_shepherd 1.781570e-01 True Labrador_retriever 1.002020e-01 True
1022 710272297844797440 https://pbs.twimg.com/media/Cdtk414WoAIUG0v.jpg 1 Old_English_sheepdog 0.586307 True wire-haired_fox_terrier 1.186220e-01 True Lakeland_terrier 1.068060e-01 True
1023 710283270106132480 https://pbs.twimg.com/media/Cdtu3WRUkAAsRVx.jpg 2 Shih-Tzu 0.932401 True Lhasa 3.080570e-02 True Tibetan_terrier 8.974280e-03 True
1024 710588934686908417 https://pbs.twimg.com/media/CdyE2x1W8AAe0TG.jpg 4 Pembroke 0.982004 True Cardigan 8.943470e-03 True malamute 7.549900e-03 True
1025 710658690886586372 https://pbs.twimg.com/media/CdzETn4W4AAVU5N.jpg 1 soft-coated_wheaten_terrier 0.948617 True Dandie_Dinmont 1.866440e-02 True cairn 1.594270e-02 True
1026 710833117892898816 https://pbs.twimg.com/media/Cd1i8qvUkAE-Jlr.jpg 1 Pembroke 0.803742 True Cardigan 1.897120e-01 True German_shepherd 1.746090e-03 True
1027 710844581445812225 https://pbs.twimg.com/media/Cd1tYGmXIAAoW5b.jpg 1 dingo 0.536593 False Pembroke 2.004070e-01 True basenji 6.073450e-02 True
1028 710997087345876993 https://pbs.twimg.com/media/Cd34FClUMAAnvGP.jpg 1 malamute 0.281260 True Eskimo_dog 2.326410e-01 True Pembroke 9.160200e-02 True
1029 711008018775851008 https://pbs.twimg.com/media/Cd4CBQFW8AAY3ND.jpg 1 French_bulldog 0.731405 True Boston_bull 1.506720e-01 True pug 2.181090e-02 True
1030 711306686208872448 https://pbs.twimg.com/media/Cd8Rpl0W0AAN1kU.jpg 1 leatherback_turtle 0.280835 False loggerhead 1.232900e-01 False Dandie_Dinmont 8.679250e-02 True
1031 711363825979756544 https://pbs.twimg.com/media/Cd9Fn5QUMAAYMT4.jpg 1 Pembroke 0.750906 True Cardigan 2.411520e-01 True basenji 2.639620e-03 True
1032 711652651650457602 https://pbs.twimg.com/media/CeBMT6-WIAA7Qqf.jpg 1 llama 0.856789 False Arabian_camel 9.872700e-02 False neck_brace 1.637720e-02 False
1033 711694788429553666 https://pbs.twimg.com/tweet_video_thumb/CeBym7... 1 brown_bear 0.713293 False Indian_elephant 1.728440e-01 False water_buffalo 3.890220e-02 False
1034 711732680602345472 https://pbs.twimg.com/media/CeCVGEbUYAASeY4.jpg 3 dingo 0.366875 False Ibizan_hound 3.349290e-01 True Eskimo_dog 7.387620e-02 True
1035 711743778164514816 https://pbs.twimg.com/media/CeCfMPDW0AAAEUj.jpg 1 Lakeland_terrier 0.459515 True miniature_poodle 2.196610e-01 True standard_poodle 1.301890e-01 True
1036 711968124745228288 https://pbs.twimg.com/media/CeFrO3qXEAADRbd.jpg 1 espresso 0.430135 False coffee_mug 4.184830e-01 False cup 8.839120e-02 False
1037 711998809858043904 https://pbs.twimg.com/tweet_video_thumb/CeGGkW... 1 comic_book 0.105171 False kuvasz 5.989510e-02 True book_jacket 4.663810e-02 False
1038 712065007010385924 https://pbs.twimg.com/media/CeHDV73W0AM5Cf8.jpg 1 goose 0.214301 False gibbon 8.425300e-02 False pizza 8.016830e-02 False
1039 712085617388212225 https://pbs.twimg.com/media/CeHWFksXIAAyypp.jpg 2 Shih-Tzu 0.625129 True Tibetan_terrier 1.268970e-01 True Lhasa 1.196630e-01 True
1040 712092745624633345 https://pbs.twimg.com/media/CeHckpuW4AAF7rT.jpg 1 triceratops 0.235373 False llama 1.531260e-01 False three-toed_sloth 1.118400e-01 False
1041 712097430750289920 https://pbs.twimg.com/media/CeHg1klW8AE4YOB.jpg 1 Labrador_retriever 0.720481 True whippet 4.803180e-02 True Chesapeake_Bay_retriever 4.504640e-02 True
1042 712438159032893441 https://pbs.twimg.com/media/CeMWubMWwAA6GwF.jpg 1 ice_bear 0.869477 False Great_Pyrenees 6.945700e-02 True Labrador_retriever 2.474000e-02 True
1043 712668654853337088 https://pbs.twimg.com/media/CePoVTyWsAQEz1g.jpg 1 Labrador_retriever 0.829058 True golden_retriever 3.866450e-02 True Chihuahua 2.622140e-02 True
1044 712717840512598017 https://pbs.twimg.com/media/CeQVF1eVIAAJaTv.jpg 1 Great_Pyrenees 0.732043 True kuvasz 1.213750e-01 True Irish_wolfhound 4.952370e-02 True
1045 712809025985978368 https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg 1 Labrador_retriever 0.868671 True carton 9.509520e-02 False pug 7.651370e-03 True
1046 713175907180089344 https://pbs.twimg.com/media/CeW1tERWAAAA9Q2.jpg 1 timber_wolf 0.503788 False malamute 4.306240e-01 True Siberian_husky 2.845420e-02 True
1047 713177543487135744 https://pbs.twimg.com/media/CeW3MWMWQAEOMbq.jpg 1 whippet 0.734244 True basenji 2.594800e-02 True Great_Dane 2.587430e-02 True
1048 713411074226274305 https://pbs.twimg.com/media/CeaLlAPUMAIcC7U.jpg 1 Great_Pyrenees 0.720337 True Samoyed 1.295420e-01 True kuvasz 1.224510e-01 True
1049 713761197720473600 https://pbs.twimg.com/media/CefKBOuWIAAIlKD.jpg 1 Brittany_spaniel 0.797936 True English_springer 4.471820e-02 True Welsh_springer_spaniel 3.791070e-02 True
1050 713900603437621249 https://pbs.twimg.com/media/CehIzzZWQAEyHH5.jpg 1 golden_retriever 0.371816 True cocker_spaniel 1.774130e-01 True Irish_setter 9.272520e-02 True
1051 713919462244790272 https://pbs.twimg.com/media/CehZ9mLWsAAsn28.jpg 1 Siberian_husky 0.463223 True Eskimo_dog 3.899590e-01 True malamute 9.796270e-02 True
1052 714141408463036416 https://pbs.twimg.com/media/Cekj0qwXEAAHcS6.jpg 1 Labrador_retriever 0.586951 True golden_retriever 3.788120e-01 True redbone 3.604890e-03 True
1053 714214115368108032 https://pbs.twimg.com/media/Cell8ikWIAACCJ-.jpg 1 pug 0.533967 True bloodhound 1.648260e-01 True German_shepherd 4.652400e-02 True
1054 714251586676113411 https://pbs.twimg.com/media/CemIBt4WwAQqhVV.jpg 2 soft-coated_wheaten_terrier 0.751962 True Bedlington_terrier 1.756520e-01 True Great_Pyrenees 1.145240e-02 True
1055 714258258790387713 https://pbs.twimg.com/media/CemOGNjWQAEoN7R.jpg 1 collie 0.176758 True Chesapeake_Bay_retriever 1.018340e-01 True beagle 1.012940e-01 True
1056 714606013974974464 https://pbs.twimg.com/media/CerKYG8WAAM1aE-.jpg 1 Norfolk_terrier 0.293007 True Labrador_retriever 2.561980e-01 True golden_retriever 1.296430e-01 True
1057 714631576617938945 https://pbs.twimg.com/media/CerhoBWWAAA5eLL.jpg 1 meerkat 0.143497 False weasel 1.174020e-01 False black-footed_ferret 9.993270e-02 False
1058 714957620017307648 https://pbs.twimg.com/media/CewKKiOWwAIe3pR.jpg 1 Great_Pyrenees 0.251516 True Samoyed 1.393460e-01 True kuvasz 1.290050e-01 True
1059 714982300363173890 https://pbs.twimg.com/media/CewgnHAXEAAdbld.jpg 1 Brittany_spaniel 0.944376 True beagle 2.543530e-02 True Ibizan_hound 9.962040e-03 True
1060 715009755312439296 https://pbs.twimg.com/media/Cew5kyOWsAA8Y_o.jpg 1 dingo 0.310903 False Chihuahua 1.422880e-01 True Cardigan 1.039450e-01 True
1061 715200624753819648 https://pbs.twimg.com/media/CeznK6IWEAEFUPq.jpg 1 Chihuahua 0.956787 True beagle 8.382870e-03 True Labrador_retriever 8.344090e-03 True
1062 715220193576927233 https://pbs.twimg.com/media/Cez49UqWsAIRQXc.jpg 1 Chihuahua 0.584026 True Italian_greyhound 3.770770e-01 True Boston_bull 1.740040e-02 True
1063 715342466308784130 https://pbs.twimg.com/media/Ce1oLNqWAAE34w7.jpg 1 West_Highland_white_terrier 0.597111 True soft-coated_wheaten_terrier 1.429930e-01 True Lakeland_terrier 1.367120e-01 True
1064 715360349751484417 https://pbs.twimg.com/media/Ce14cOvWwAAcFJH.jpg 1 nail 0.855552 False screw 7.327730e-02 False padlock 2.397040e-02 False
1065 715680795826982913 https://pbs.twimg.com/media/Ce6b4MPWwAA22Xm.jpg 1 golden_retriever 0.990715 True Labrador_retriever 2.228340e-03 True chow 1.197150e-03 True
1066 715696743237730304 https://pbs.twimg.com/media/Ce6qZC2WAAAcSoI.jpg 1 Staffordshire_bullterrier 0.427836 True pug 2.214090e-01 True French_bulldog 1.321350e-01 True
1067 715733265223708672 https://pbs.twimg.com/media/Ce7LlUeUUAEQkQl.jpg 1 Dandie_Dinmont 0.740229 True miniature_poodle 8.191510e-02 True toy_poodle 6.374850e-02 True
1068 715928423106027520 https://pbs.twimg.com/media/Ce99GhLW8AAHG38.jpg 1 pug 0.976685 True French_bulldog 1.966260e-02 True bull_mastiff 2.278190e-03 True
1069 716080869887381504 https://pbs.twimg.com/media/CfAHv83UMAIEQYx.jpg 1 golden_retriever 0.638625 True chow 2.547170e-01 True Tibetan_mastiff 7.173170e-02 True
1070 716285507865542656 https://pbs.twimg.com/media/CfDB3aJXEAAEZNv.jpg 1 Yorkshire_terrier 0.430420 True silky_terrier 1.967690e-01 True cairn 7.267610e-02 True
1071 716439118184652801 https://pbs.twimg.com/media/CfFNk7cWAAA-hND.jpg 1 Siberian_husky 0.396495 True malamute 3.170530e-01 True Eskimo_dog 2.734190e-01 True
1072 716791146589110272 https://pbs.twimg.com/media/CfKNvU8WsAAvI9Z.jpg 1 Pomeranian 0.468751 True seat_belt 1.546520e-01 False golden_retriever 1.250170e-01 True
1073 716802964044845056 https://pbs.twimg.com/media/CfKYfeBXIAAopp2.jpg 2 malinois 0.619577 True Leonberg 1.180890e-01 True bull_mastiff 6.650780e-02 True
1074 717009362452090881 https://pbs.twimg.com/media/CfNUNetW8AAekHx.jpg 1 Siberian_husky 0.506154 True Eskimo_dog 2.696560e-01 True malamute 6.065850e-02 True
1075 717047459982213120 https://pbs.twimg.com/media/CfN23ArXEAEkZkz.jpg 1 golden_retriever 0.983548 True Labrador_retriever 1.218540e-02 True cocker_spaniel 2.412030e-03 True
1076 717421804990701568 https://pbs.twimg.com/media/CfTLUYWXEAEkyES.jpg 2 miniature_pinscher 0.286479 True Italian_greyhound 8.413390e-02 True beagle 6.469700e-02 True
1077 717537687239008257 https://pbs.twimg.com/media/CfU0t75W4AAUo9V.jpg 1 golden_retriever 0.779356 True Labrador_retriever 5.251140e-02 True kuvasz 4.981050e-02 True
1078 717790033953034240 https://pbs.twimg.com/media/CfYaOeMWQAAGfyP.jpg 1 car_mirror 0.819106 False minibus 1.073830e-01 False cab 3.484640e-02 False
1079 717841801130979328 https://pbs.twimg.com/media/CfZJTphWAAAl5Ys.jpg 1 Brittany_spaniel 0.922876 True English_springer 7.011350e-02 True bath_towel 2.560790e-03 False
1080 718234618122661888 https://pbs.twimg.com/media/CfeukpmW4AEGjOE.jpg 1 malamute 0.370152 True Siberian_husky 3.563980e-01 True Eskimo_dog 2.710420e-01 True
1081 718246886998687744 https://pbs.twimg.com/media/Cfe5tLWXEAIaoFO.jpg 1 Chihuahua 0.354488 True carton 1.596720e-01 False Siberian_husky 5.749830e-02 True
1082 718454725339934721 https://pbs.twimg.com/media/Cfh2w6HWIAIIYAF.jpg 1 hammer 0.169865 False hatchet 1.157440e-01 False chime 6.809160e-02 False
1083 718460005985447936 https://pbs.twimg.com/media/Cfh7j6CWQAAndTd.jpg 1 badger 0.356946 False Boston_bull 2.527810e-01 True kelpie 1.134330e-01 True
1084 718540630683709445 https://pbs.twimg.com/media/CfjE5FRXEAErFWR.jpg 2 Maltese_dog 0.632289 True West_Highland_white_terrier 1.870550e-01 True cairn 4.441290e-02 True
1085 718613305783398402 https://pbs.twimg.com/media/CfkG_PMWsAAH0MZ.jpg 1 Labrador_retriever 0.584580 True German_short-haired_pointer 3.406570e-01 True Chesapeake_Bay_retriever 3.197510e-02 True
1086 718631497683582976 https://pbs.twimg.com/media/CfkXiX6W4AAmICF.jpg 1 Pomeranian 0.993718 True Pekinese 3.610830e-03 True Persian_cat 5.248230e-04 False
1087 718939241951195136 https://pbs.twimg.com/media/CfovbK4WIAAkTn3.jpg 1 Pembroke 0.766327 True Cardigan 2.221260e-01 True toilet_tissue 6.757230e-03 False
1088 718971898235854848 https://pbs.twimg.com/media/CfpNGTHUIAAA8XC.jpg 1 golden_retriever 0.140394 True Saint_Bernard 1.187690e-01 True Labrador_retriever 7.549170e-02 True
1089 719332531645071360 https://pbs.twimg.com/media/CfuVGl3WEAEKb16.jpg 1 Dandie_Dinmont 0.224415 True miniature_poodle 2.048820e-01 True Norfolk_terrier 9.063290e-02 True
1090 719339463458033665 https://pbs.twimg.com/media/Cfuba6NW4AIeMHk.jpg 1 golden_retriever 0.765778 True borzoi 7.114810e-02 True Leonberg 7.037050e-02 True
1091 719367763014393856 https://pbs.twimg.com/media/Cfu1KSRXEAACC5X.jpg 1 swing 0.171486 False soft-coated_wheaten_terrier 5.097100e-02 True Tibetan_terrier 4.775940e-02 True
1092 719551379208073216 https://pbs.twimg.com/media/CfxcKU6W8AE-wEx.jpg 1 malamute 0.873233 True Siberian_husky 7.643540e-02 True Eskimo_dog 3.574500e-02 True
1093 719704490224398336 https://pbs.twimg.com/media/CfznaXuUsAAH-py.jpg 1 home_theater 0.059033 False window_shade 3.829900e-02 False bathtub 3.552820e-02 False
1094 719991154352222208 https://pbs.twimg.com/media/Cf3sH62VAAA-LiP.jpg 2 golden_retriever 0.605304 True cocker_spaniel 1.309480e-01 True Labrador_retriever 9.469160e-02 True
1095 720043174954147842 https://pbs.twimg.com/media/Cf4bcm8XEAAX4xV.jpg 1 Samoyed 0.954517 True Eskimo_dog 2.912960e-02 True white_wolf 4.462030e-03 False
1096 720059472081784833 https://pbs.twimg.com/media/Cf4qRcmWEAA9V4h.jpg 1 Mexican_hairless 0.451852 True redbone 2.548840e-01 True Italian_greyhound 9.481810e-02 True
1097 720340705894408192 https://pbs.twimg.com/media/Cf8qDFbWwAEf8M3.jpg 1 alp 0.320126 False lawn_mower 8.080770e-02 False viaduct 6.532100e-02 False
1098 720389942216527872 https://pbs.twimg.com/media/Cf9W1J-UMAErahM.jpg 1 Pembroke 0.873977 True Cardigan 4.333850e-02 True Eskimo_dog 1.919710e-02 True
1099 720415127506415616 https://pbs.twimg.com/media/Cf9tuHUWsAAHSrV.jpg 1 Rottweiler 0.990312 True black-and-tan_coonhound 2.494780e-03 True American_black_bear 1.733120e-03 False
1100 720775346191278080 https://pbs.twimg.com/media/CgC1WqMW4AI1_N0.jpg 1 Newfoundland 0.489970 True groenendael 1.744970e-01 True giant_schnauzer 7.906670e-02 True
1101 720785406564900865 https://pbs.twimg.com/media/CgC-gMCWcAAawUE.jpg 1 Chihuahua 0.896422 True dingo 2.792940e-02 False kelpie 1.791580e-02 True
1102 721001180231503872 https://pbs.twimg.com/media/CgGCvxAUkAAx55r.jpg 1 Samoyed 0.950053 True washbasin 6.321390e-03 False tub 6.243350e-03 False
1103 721503162398597120 https://pbs.twimg.com/media/CgNLS1PW8AAxWSN.jpg 3 Pomeranian 0.997750 True Chihuahua 1.248000e-03 True Pekinese 7.750020e-04 True
1104 722613351520608256 https://pbs.twimg.com/media/Cgc9AjMVIAERdUA.jpg 1 Labrador_retriever 0.530915 True golden_retriever 2.882300e-01 True chow 4.485370e-02 True
1105 722974582966214656 https://pbs.twimg.com/media/CgiFjIpWgAA4wVp.jpg 1 Great_Dane 0.246762 True Greater_Swiss_Mountain_dog 1.261310e-01 True Weimaraner 8.529690e-02 True
1106 723179728551723008 https://pbs.twimg.com/media/CglAHjAUgAAfxcq.jpg 1 tennis_ball 0.176495 False badger 5.990520e-02 False Norwegian_elkhound 5.685050e-02 True
1107 723673163800948736 https://pbs.twimg.com/media/CgsA5eFWgAAu0qn.jpg 1 golden_retriever 0.839390 True Labrador_retriever 6.570580e-02 True hand_blower 1.294100e-02 False
1108 723688335806480385 https://pbs.twimg.com/media/CgsOszGW0AAruKp.jpg 2 teddy 0.263256 False chow 8.901020e-02 True Irish_terrier 6.530570e-02 True
1109 723912936180330496 https://pbs.twimg.com/media/Cgva-QqUUAA7Hv9.jpg 1 Samoyed 0.991772 True Pomeranian 3.626380e-03 True chow 2.231830e-03 True
1110 724004602748780546 https://pbs.twimg.com/media/CgwuWCeW4AAsgbD.jpg 3 Siamese_cat 0.950526 False pug 1.887690e-02 True quilt 7.627600e-03 False
1111 724046343203856385 https://pbs.twimg.com/media/CgxUTS_XEAAC0pv.jpg 1 boxer 0.826272 True bull_mastiff 1.585950e-01 True Great_Dane 1.185860e-02 True
1112 724049859469295616 https://pbs.twimg.com/media/CgxXf1TWYAEjY61.jpg 1 Border_collie 0.581835 True collie 3.445880e-01 True Shetland_sheepdog 4.358420e-02 True
1113 724405726123311104 https://pbs.twimg.com/media/Cg2bKLAWwAA0WEm.jpg 1 golden_retriever 0.240695 True cocker_spaniel 2.024440e-01 True feather_boa 1.593480e-01 False
1114 724771698126512129 https://pbs.twimg.com/media/Cg7n_-OU8AA5RR1.jpg 2 German_short-haired_pointer 0.835491 True bluetick 5.878800e-02 True English_setter 3.720830e-02 True
1115 724983749226668032 https://pbs.twimg.com/media/Cg-o3w0WgAANXdv.jpg 1 golden_retriever 0.675750 True Great_Pyrenees 9.516790e-02 True cocker_spaniel 7.604290e-02 True
1116 725729321944506368 https://pbs.twimg.com/media/ChJO9YaWYAEL0zC.jpg 1 boxer 0.599076 True bull_mastiff 1.773180e-01 True French_bulldog 1.414610e-01 True
1117 725786712245440512 https://pbs.twimg.com/media/ChKDKmIWIAIJP_e.jpg 1 chow 0.335761 True Samoyed 1.671730e-01 True kuvasz 1.457150e-01 True
1118 725842289046749185 https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg 1 toy_poodle 0.420463 True miniature_poodle 1.326400e-01 True Chesapeake_Bay_retriever 1.215230e-01 True
1119 726224900189511680 https://pbs.twimg.com/media/ChQRsYaW0AETD7z.jpg 1 standard_poodle 0.261112 True cocker_spaniel 9.478520e-02 True bucket 6.994640e-02 False
1120 726828223124897792 https://pbs.twimg.com/media/ChY2aHyWMAAbNQE.jpg 1 miniature_pinscher 0.255327 True Border_terrier 1.812790e-01 True Labrador_retriever 1.251850e-01 True
1121 726887082820554753 https://pbs.twimg.com/media/ChZr8SdWIAAVQKt.jpg 1 soft-coated_wheaten_terrier 0.515919 True Irish_terrier 1.626550e-01 True Chesapeake_Bay_retriever 1.251820e-01 True
1122 726935089318363137 https://pbs.twimg.com/media/ChaXmuAXEAE66KP.jpg 2 teddy 0.821615 False toy_poodle 8.374900e-02 True Lakeland_terrier 3.331800e-02 True
1123 727175381690781696 https://pbs.twimg.com/media/ChdyJvdWwAA5HGd.jpg 2 flat-coated_retriever 0.656463 True Great_Dane 8.476580e-02 True Labrador_retriever 5.890850e-02 True
1124 727286334147182592 https://pbs.twimg.com/media/ChfXDrGUkAEAtF-.jpg 1 bonnet 0.146440 False sock 8.309100e-02 False Chihuahua 7.055420e-02 True
1125 727314416056803329 https://pbs.twimg.com/media/Chfwmd9U4AQTf1b.jpg 2 toy_poodle 0.827469 True miniature_poodle 1.607600e-01 True Tibetan_terrier 1.730750e-03 True
1126 727524757080539137 https://pbs.twimg.com/media/Chiv6BAW4AAiQvH.jpg 2 Pomeranian 0.958834 True Chihuahua 2.409920e-02 True chow 3.941050e-03 True
1127 727644517743104000 https://pbs.twimg.com/media/Chkc1BQUoAAa96R.jpg 2 Great_Pyrenees 0.457164 True kuvasz 3.917100e-01 True Labrador_retriever 9.452260e-02 True
1128 727685679342333952 https://pbs.twimg.com/media/ChlCQg-VIAQ_8g4.jpg 1 Border_collie 0.462408 True collie 2.145560e-01 True Eskimo_dog 3.560360e-02 True
1129 728015554473250816 https://pbs.twimg.com/media/ChpuRyvVAAARMoq.jpg 1 cocker_spaniel 0.384559 True golden_retriever 9.166100e-02 True sandbar 8.179890e-02 False
1130 728035342121635841 https://pbs.twimg.com/media/ChqARqmWsAEI6fB.jpg 1 handkerchief 0.302961 False Pomeranian 2.486640e-01 True Shih-Tzu 1.110150e-01 True
1131 728046963732717569 https://pbs.twimg.com/media/ChqK2cVWMAAE5Zj.jpg 1 Newfoundland 0.255971 True groenendael 1.755830e-01 True German_shepherd 1.641350e-01 True
1132 728387165835677696 https://pbs.twimg.com/media/ChvAQuMWMAAVaKD.jpg 1 collie 0.266414 True Great_Pyrenees 1.385460e-01 True keeshond 1.090140e-01 True
1133 728409960103686147 https://pbs.twimg.com/media/ChvU_DwWMAArx5L.jpg 1 Siamese_cat 0.478278 False Saint_Bernard 9.424560e-02 True king_penguin 8.215670e-02 False
1134 728653952833728512 https://pbs.twimg.com/media/Chyy5lQWUAEzxSL.jpg 2 window_shade 0.594333 False studio_couch 5.351500e-02 False rotisserie 4.124780e-02 False
1135 728751179681943552 https://pbs.twimg.com/media/Ch0LVPdW0AEdHgU.jpg 1 Saint_Bernard 0.482050 True collie 2.027400e-01 True borzoi 3.797580e-02 True
1136 728760639972315136 https://pbs.twimg.com/media/Ch0T71OWMAA4yIw.jpg 1 Pembroke 0.939134 True Cardigan 5.433560e-02 True Chihuahua 5.590290e-03 True
1137 728986383096946689 https://pbs.twimg.com/media/Ch3hOGWUYAE7w0y.jpg 2 Maltese_dog 0.952070 True toy_poodle 2.727060e-02 True miniature_poodle 4.874360e-03 True
1138 729113531270991872 https://pbs.twimg.com/media/Ch5U4FzXEAAShhF.jpg 2 stone_wall 0.606188 False prison 6.483100e-02 False bannister 4.804820e-02 False
1139 729463711119904772 https://pbs.twimg.com/media/Ch-TXpFXAAAwPGf.jpg 1 German_shepherd 0.829307 True Doberman 2.250000e-02 True basenji 2.119010e-02 True
1140 729823566028484608 https://pbs.twimg.com/media/CiDap8fWEAAC4iW.jpg 1 kelpie 0.218408 True Arabian_camel 1.143680e-01 False coyote 9.640930e-02 False
1141 729838605770891264 https://pbs.twimg.com/ext_tw_video_thumb/72983... 1 stone_wall 0.758218 False patio 7.420540e-02 False prison 1.382600e-02 False
1142 729854734790754305 https://pbs.twimg.com/media/CiD3AfkXEAA3S_r.jpg 1 doormat 0.359586 False china_cabinet 5.390140e-02 False passenger_car 5.266470e-02 False
1143 730196704625098752 https://pbs.twimg.com/media/CiIuBwCUgAAAGbz.jpg 1 hand_blower 0.296145 False chain_mail 2.622710e-01 False toilet_seat 1.494970e-01 False
1144 730211855403241472 https://pbs.twimg.com/media/CiI7zVZUoAEzGW7.jpg 1 pug 0.341663 True Norwegian_elkhound 1.712220e-01 True German_shepherd 1.246870e-01 True
1145 730427201120833536 https://pbs.twimg.com/media/CiL_qh0W0AAu5VA.jpg 1 Eskimo_dog 0.682082 True Siberian_husky 2.892880e-01 True Staffordshire_bullterrier 8.770690e-03 True
1146 730573383004487680 https://pbs.twimg.com/media/CiOEnI6WgAAmq4E.jpg 2 American_Staffordshire_terrier 0.810158 True Labrador_retriever 5.820500e-02 True Weimaraner 2.792950e-02 True
1147 730924654643314689 https://pbs.twimg.com/media/CiTEFjDXAAAqU6I.jpg 1 polecat 0.185382 False mink 1.052820e-01 False Newfoundland 8.624110e-02 True
1148 731156023742988288 https://pbs.twimg.com/media/CiWWhVNUYAAab_r.jpg 1 lakeside 0.501767 False breakwater 5.135060e-02 False king_penguin 4.944380e-02 False
1149 731285275100512256 https://pbs.twimg.com/media/CiYME3tVAAENz99.jpg 1 Pembroke 0.967103 True Cardigan 2.112640e-02 True Chihuahua 2.231070e-03 True
1150 732005617171337216 https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg 1 English_setter 0.677408 True Border_collie 5.272400e-02 True cocker_spaniel 4.857190e-02 True
1151 732375214819057664 https://pbs.twimg.com/media/CinrX2EWkAABDYt.jpg 1 tennis_ball 0.998673 False basset 5.470530e-04 True golden_retriever 3.599800e-04 True
1152 732585889486888962 https://pbs.twimg.com/media/Ciqq-VFUUAANlWm.jpg 2 Staffordshire_bullterrier 0.843359 True American_Staffordshire_terrier 2.829030e-02 True miniature_pinscher 1.679290e-02 True
1153 732726085725589504 https://pbs.twimg.com/media/CisqdVcXEAE3iW7.jpg 1 Pomeranian 0.961902 True Samoyed 2.428930e-02 True chow 5.771780e-03 True
1154 732732193018155009 https://pbs.twimg.com/media/CiswCQhWYAI5-QW.jpg 1 koala 0.162935 False Staffordshire_bullterrier 1.279690e-01 True mongoose 9.642100e-02 False
1155 733109485275860992 https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg 1 golden_retriever 0.945523 True Labrador_retriever 4.231910e-02 True doormat 3.956260e-03 False
1156 733460102733135873 https://pbs.twimg.com/media/Ci3GDeyUoAAKOxn.jpg 1 chow 0.931275 True beaver 2.883110e-02 False dhole 1.737900e-02 False
1157 733482008106668032 https://pbs.twimg.com/media/Ci3Z_idUkAA8RUh.jpg 1 French_bulldog 0.619382 True computer_keyboard 1.422740e-01 False mouse 5.850470e-02 False
1158 733822306246479872 https://pbs.twimg.com/media/Ci8Pfg_UUAA2m9i.jpg 1 Lhasa 0.457356 True Shih-Tzu 3.712820e-01 True Tibetan_terrier 4.835900e-02 True
1159 733828123016450049 https://pbs.twimg.com/media/Ci8UxxcW0AYgHDh.jpg 2 beagle 0.472324 True Walker_hound 1.217790e-01 True Saint_Bernard 1.146400e-01 True
1160 734776360183431168 https://pbs.twimg.com/media/CjJzMlBUoAADMLx.jpg 1 Siberian_husky 0.304902 True Eskimo_dog 1.551470e-01 True malamute 5.094240e-02 True
1161 734787690684657664 https://pbs.twimg.com/media/CjJ9gQ1WgAAXQtJ.jpg 4 golden_retriever 0.883991 True chow 2.354160e-02 True Labrador_retriever 1.605590e-02 True
1162 734912297295085568 https://pbs.twimg.com/media/CjLuzPvUoAAbU5k.jpg 1 Maltese_dog 0.847292 True feather_boa 5.937860e-02 False Old_English_sheepdog 5.275800e-02 True
1163 735137028879360001 https://pbs.twimg.com/media/CjO7OfeWgAAUQy-.jpg 1 Walker_hound 0.413535 True beagle 2.338910e-01 True English_foxhound 1.649430e-01 True
1164 735256018284875776 https://pbs.twimg.com/media/CjQnclkVEAA4pnK.jpg 1 Staffordshire_bullterrier 0.523191 True French_bulldog 3.511040e-01 True doormat 2.807530e-02 False
1165 735274964362878976 https://pbs.twimg.com/media/CjQ4radW0AENP-m.jpg 1 studio_couch 0.944692 False four-poster 7.941630e-03 False quilt 6.302060e-03 False
1166 735635087207878657 https://pbs.twimg.com/media/CjWANBlVAAAaN-a.jpg 1 pug 0.891871 True goose 1.437660e-02 False fur_coat 8.451430e-03 False
1167 735648611367784448 https://pbs.twimg.com/media/CjWMezdW0AErwU3.jpg 1 Pembroke 0.462594 True seat_belt 2.618540e-01 False Cardigan 1.516980e-01 True
1168 735991953473572864 https://pbs.twimg.com/media/CjbExRKUoAAs089.jpg 2 cocker_spaniel 0.961643 True toy_poodle 1.154690e-02 True soft-coated_wheaten_terrier 4.903330e-03 True
1169 736010884653420544 https://pbs.twimg.com/media/CjbV-lEWgAAr6WY.jpg 2 golden_retriever 0.553901 True Labrador_retriever 1.194750e-01 True bluetick 7.747500e-02 True
1170 736225175608430592 https://pbs.twimg.com/media/CjeY5DKXEAA3WkD.jpg 1 Labrador_retriever 0.399217 True West_Highland_white_terrier 1.377100e-01 True cocker_spaniel 6.203270e-02 True
1171 736365877722001409 https://pbs.twimg.com/media/CjgYyuvWkAAHU8g.jpg 3 cup 0.473555 False toy_poodle 8.260600e-02 True consomme 4.829800e-02 False
1172 736736130620620800 https://pbs.twimg.com/media/CjlpmZaUgAED54W.jpg 1 schipperke 0.545502 True groenendael 2.986220e-01 True Labrador_retriever 3.098640e-02 True
1173 737310737551491075 https://pbs.twimg.com/ext_tw_video_thumb/73731... 1 cliff 0.439077 False lakeside 6.289920e-02 False valley 3.975850e-02 False
1174 737322739594330112 https://pbs.twimg.com/media/Cjt_Hm6WsAAjkPG.jpg 1 guinea_pig 0.148526 False solar_dish 9.718290e-02 False park_bench 5.931190e-02 False
1175 737445876994609152 https://pbs.twimg.com/media/CjvvHBwUoAE55WZ.jpg 1 Samoyed 0.400568 True Pomeranian 3.312680e-01 True Maltese_dog 4.542610e-02 True
1176 737678689543020544 https://pbs.twimg.com/media/CjzC2oGWYAAyIfG.jpg 1 Pembroke 0.935307 True Cardigan 4.987420e-02 True Chihuahua 1.160320e-02 True
1177 737800304142471168 https://pbs.twimg.com/media/Cj0xdMBVAAEbDHp.jpg 1 malamute 0.374682 True Norwegian_elkhound 3.348530e-01 True limousine 6.817320e-02 False
1178 737826014890496000 https://pbs.twimg.com/media/Cj1I1fbWYAAOwff.jpg 1 vizsla 0.990391 True Rhodesian_ridgeback 5.604740e-03 True Chesapeake_Bay_retriever 2.869360e-03 True
1179 738156290900254721 https://pbs.twimg.com/media/Cj51Oj3VAAEVe4O.jpg 1 pug 0.751758 True tub 1.107480e-01 False bathtub 1.041320e-01 False
1180 738166403467907072 https://pbs.twimg.com/media/Cj5-aUQUgAAb43p.jpg 2 keeshond 0.878886 True Norwegian_elkhound 8.665940e-02 True malamute 2.128030e-02 True
1181 738184450748633089 https://pbs.twimg.com/media/Cj6O1G9UYAAIU-1.jpg 1 Bedlington_terrier 0.289471 True standard_poodle 1.736850e-01 True Great_Pyrenees 1.570810e-01 True
1182 738402415918125056 https://pbs.twimg.com/media/Cj9VEs_XAAAlTai.jpg 1 cocker_spaniel 0.346695 True Blenheim_spaniel 1.939050e-01 True Chihuahua 7.800000e-02 True
1183 738537504001953792 https://pbs.twimg.com/media/Cj_P7rSUgAAYQbz.jpg 1 chow 0.808737 True gibbon 2.894240e-02 False Pembroke 2.649790e-02 True
1184 738883359779196928 https://pbs.twimg.com/media/CkEKe3QWYAAwoDy.jpg 2 Labrador_retriever 0.691137 True golden_retriever 1.955580e-01 True Chesapeake_Bay_retriever 1.958490e-02 True
1185 738885046782832640 https://pbs.twimg.com/media/CkEMBz9WYAAGLaa.jpg 1 bath_towel 0.878320 False swab 2.063330e-02 False American_Staffordshire_terrier 1.553510e-02 True
1186 739238157791694849 https://pbs.twimg.com/ext_tw_video_thumb/73923... 1 Eskimo_dog 0.503372 True Siberian_husky 3.904130e-01 True malamute 8.090120e-02 True
1187 739485634323156992 https://pbs.twimg.com/media/CkMuP7SWkAAD-2R.jpg 2 Walker_hound 0.640256 True English_foxhound 2.297990e-01 True beagle 3.775400e-02 True
1188 739544079319588864 https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg 1 Labrador_retriever 0.967397 True golden_retriever 1.664140e-02 True ice_bear 1.485760e-02 False
1189 739606147276148736 https://pbs.twimg.com/media/CkOb3FXW0AAUL_U.jpg 3 Blenheim_spaniel 0.933755 True cocker_spaniel 4.171940e-02 True Brittany_spaniel 6.712560e-03 True
1190 739844404073074688 https://pbs.twimg.com/media/CkR0jrhWYAALL5N.jpg 1 toy_poodle 0.342397 True table_lamp 1.044510e-01 False miniature_poodle 7.987100e-02 True
1191 739932936087216128 https://pbs.twimg.com/media/CkTFEe-W0AA90m1.jpg 1 redbone 0.243904 True beagle 2.109750e-01 True vizsla 7.644300e-02 True
1192 739979191639244800 https://pbs.twimg.com/media/CkTvJTdXAAAEfbT.jpg 1 Irish_water_spaniel 0.285800 True wig 2.406530e-01 False toy_poodle 7.491390e-02 True
1193 740214038584557568 https://pbs.twimg.com/media/CkXEu2OUoAAs8yU.jpg 1 Chesapeake_Bay_retriever 0.586414 True Labrador_retriever 1.897820e-01 True vizsla 6.760720e-02 True
1194 740359016048689152 https://pbs.twimg.com/media/CkZImGVUoAAwv0b.jpg 1 golden_retriever 0.863687 True kuvasz 4.859010e-02 True Labrador_retriever 4.739660e-02 True
1195 740365076218183684 https://pbs.twimg.com/media/CkZOGhJWsAAHvPv.jpg 1 bow_tie 0.246313 False Windsor_tie 1.724460e-01 False mushroom 1.375160e-01 False
1196 740373189193256964 https://pbs.twimg.com/media/CkZVdJ6WYAAXZ5A.jpg 3 golden_retriever 0.807644 True kuvasz 1.012860e-01 True Labrador_retriever 2.378530e-02 True
1197 740676976021798912 https://pbs.twimg.com/media/Ckdpx5KWsAANF6b.jpg 1 wombat 0.462952 False Norwegian_elkhound 2.752250e-01 True Siamese_cat 4.355930e-02 False
1198 740699697422163968 https://pbs.twimg.com/media/Ckd-bqVUkAIiyM7.jpg 1 lawn_mower 0.878863 False swing 2.453510e-02 False barrow 1.957720e-02 False
1199 740711788199743490 https://pbs.twimg.com/media/CkeJcNkXEAAcrks.jpg 1 toy_poodle 0.388277 True Angora 1.802640e-01 False Persian_cat 4.965610e-02 False
1200 740995100998766593 https://pbs.twimg.com/media/CkiLHCjUUAAPwUr.jpg 1 malamute 0.454363 True Samoyed 2.159670e-01 True Siberian_husky 7.750030e-02 True
1201 741067306818797568 https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg 1 golden_retriever 0.843799 True Labrador_retriever 5.295590e-02 True kelpie 3.571110e-02 True
1202 741303864243200000 https://pbs.twimg.com/media/Ckmj7mNWYAA4NzZ.jpg 1 Chihuahua 0.768156 True pug 1.490160e-02 True Pekinese 1.281580e-02 True
1203 741438259667034112 https://pbs.twimg.com/media/CkoeKTPWYAAcWmo.jpg 1 Chesapeake_Bay_retriever 0.292675 True redbone 1.978580e-01 True vizsla 1.503120e-01 True
1204 741743634094141440 https://pbs.twimg.com/media/Cksz42EW0AAh2NF.jpg 1 Labrador_retriever 0.786089 True flat-coated_retriever 4.865240e-02 True Chesapeake_Bay_retriever 3.469330e-02 True
1205 741793263812808706 https://pbs.twimg.com/media/CkthBj7WgAAsIGb.jpg 1 kuvasz 0.311325 True French_bulldog 1.153490e-01 True Labrador_retriever 6.853350e-02 True
1206 742150209887731712 https://pbs.twimg.com/media/CkylrVWWsAAiXJE.jpg 1 Siamese_cat 0.112413 False French_bulldog 7.141440e-02 True hog 6.246540e-02 False
1207 742161199639494656 https://pbs.twimg.com/media/CkyvqnNWYAQxQY1.jpg 1 balloon 0.990736 False punching_bag 4.753560e-03 False parachute 4.359740e-04 False
1208 742385895052087300 https://pbs.twimg.com/media/Ck18CFcXIAAUWoy.jpg 1 Cardigan 0.566911 True Border_collie 1.175660e-01 True Appenzeller 4.766400e-02 True
1209 742423170473463808 https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg 1 pug 0.997310 True Brabancon_griffon 1.185630e-03 True French_bulldog 4.279890e-04 True
1210 742465774154047488 https://pbs.twimg.com/media/Ck3EribXEAAPhZn.jpg 1 web_site 0.997154 False comic_book 4.392210e-04 False desktop_computer 2.675790e-04 False
1211 742528092657332225 https://pbs.twimg.com/media/Ck39W0JWUAApgnH.jpg 2 sunglasses 0.900864 False sunglass 4.029060e-02 False snorkel 9.332920e-03 False
1212 743210557239623680 https://pbs.twimg.com/media/ClBqDuDWkAALK2e.jpg 1 golden_retriever 0.930705 True Chesapeake_Bay_retriever 2.593410e-02 True Labrador_retriever 7.535360e-03 True
1213 743222593470234624 https://pbs.twimg.com/media/ClB09z0WYAAA1jz.jpg 1 kuvasz 0.350629 True soft-coated_wheaten_terrier 1.827820e-01 True golden_retriever 8.766240e-02 True
1214 743253157753532416 https://pbs.twimg.com/media/ClCQzFUUYAA5vAu.jpg 1 malamute 0.442612 True Siberian_husky 3.681370e-01 True Eskimo_dog 1.778220e-01 True
1215 743510151680958465 https://pbs.twimg.com/ext_tw_video_thumb/74350... 1 sea_lion 0.859046 False tub 2.040540e-02 False hippopotamus 1.309480e-02 False
1216 743545585370791937 https://pbs.twimg.com/media/ClGawiUWAAAgs0w.jpg 2 rapeseed 0.876875 False standard_poodle 6.058350e-02 True Great_Pyrenees 3.300570e-02 True
1217 743595368194129920 https://pbs.twimg.com/media/ClHICHmXEAI_1PS.jpg 1 hippopotamus 0.505675 False hog 3.707260e-01 False warthog 1.882720e-02 False
1218 743609206067040256 https://pbs.twimg.com/media/ClHUkhQWAAAy7Yj.jpg 3 Weimaraner 0.982794 True American_Staffordshire_terrier 4.766400e-03 True Great_Dane 3.432010e-03 True
1219 743895849529389061 https://pbs.twimg.com/media/ClLZU8LWQAAsOxV.jpg 1 dalmatian 0.562315 True Great_Dane 4.164780e-01 True German_short-haired_pointer 8.552360e-03 True
1220 743980027717509120 https://pbs.twimg.com/media/ClMl4VLUYAA5qBb.jpg 1 bull_mastiff 0.975730 True Rhodesian_ridgeback 8.072610e-03 True pug 5.570870e-03 True
1221 744234799360020481 https://pbs.twimg.com/ext_tw_video_thumb/74423... 1 Labrador_retriever 0.825333 True ice_bear 4.468080e-02 False whippet 1.844220e-02 True
1222 744334592493166593 https://pbs.twimg.com/media/ClRoXGwWIAEVVzc.jpg 1 Samoyed 0.960543 True Pomeranian 1.219190e-02 True white_wolf 4.752990e-03 False
1223 744709971296780288 https://pbs.twimg.com/media/ClW9w7mWEAEFN1k.jpg 1 Shetland_sheepdog 0.234431 True Samoyed 1.148760e-01 True collie 8.661370e-02 True
1224 744971049620602880 https://pbs.twimg.com/media/ClarNU8VAAEDrDt.jpg 1 toy_poodle 0.497755 True golden_retriever 2.820170e-01 True miniature_poodle 9.003240e-02 True
1225 744995568523612160 https://pbs.twimg.com/media/ClbBg4WWEAMjwJu.jpg 1 Old_English_sheepdog 0.427481 True Shih-Tzu 1.463360e-01 True Tibetan_terrier 1.342690e-01 True
1226 745057283344719872 https://pbs.twimg.com/media/Clb5pLJWMAE-QS1.jpg 2 Shetland_sheepdog 0.963985 True collie 2.620570e-02 True Border_collie 4.543650e-03 True
1227 745314880350101504 https://pbs.twimg.com/media/Clfj6RYWMAAFAOW.jpg 2 ice_bear 0.807762 False great_white_shark 2.704040e-02 False fountain 2.205180e-02 False
1228 745422732645535745 https://pbs.twimg.com/media/ClhGBCAWIAAFCsz.jpg 1 Labrador_retriever 0.663800 True golden_retriever 3.082610e-01 True ice_bear 4.269210e-03 False
1229 745433870967832576 https://pbs.twimg.com/media/ClhQJUUWAAEVpBX.jpg 1 barrow 0.999962 False basset 1.448950e-05 True wok 6.060880e-06 False
1230 745712589599014916 https://pbs.twimg.com/media/CllNnkWWMAEDIAR.jpg 1 seat_belt 0.379055 False chow 6.275450e-02 True minibus 5.242260e-02 False
1231 745789745784041472 https://pbs.twimg.com/media/ClmT0KHWkAAXbhy.jpg 1 Pekinese 0.984267 True Shih-Tzu 8.941660e-03 True cocker_spaniel 1.928260e-03 True
1232 746056683365994496 https://pbs.twimg.com/media/ClqGl7fXIAA8nDe.jpg 1 Shetland_sheepdog 0.433320 True collie 3.359970e-01 True borzoi 1.771790e-01 True
1233 746131877086527488 https://pbs.twimg.com/media/ClrK-rGWAAENcAa.jpg 1 chow 0.575637 True Pomeranian 1.959500e-01 True Norwich_terrier 1.412240e-01 True
1234 746369468511756288 https://pbs.twimg.com/media/ClujESVXEAA4uH8.jpg 1 German_shepherd 0.622957 True malinois 3.388840e-01 True wallaby 2.416150e-02 False
1235 746507379341139972 https://pbs.twimg.com/media/Clwgf4bWgAAB15c.jpg 1 toy_poodle 0.508292 True Lakeland_terrier 2.344580e-01 True affenpinscher 8.456280e-02 True
1236 746726898085036033 https://pbs.twimg.com/media/ClzoJz7WYAELHSf.jpg 1 golden_retriever 0.256505 True Labrador_retriever 2.524170e-01 True seat_belt 2.031630e-01 False
1237 746790600704425984 https://pbs.twimg.com/media/Cl0iFdeXEAQtPyT.jpg 3 Boston_bull 0.936183 True guinea_pig 1.008400e-02 False Cardigan 1.007700e-02 True
1238 746818907684614144 https://pbs.twimg.com/media/Cl071YVWEAAlF7N.jpg 1 dingo 0.175518 False timber_wolf 1.336470e-01 False Ibizan_hound 1.015370e-01 True
1239 746872823977771008 https://pbs.twimg.com/media/Cl1s1p7WMAA44Vk.jpg 1 Pembroke 0.540201 True beagle 2.078350e-01 True Italian_greyhound 4.356490e-02 True
1240 746906459439529985 https://pbs.twimg.com/media/Cl2LdofXEAATl7x.jpg 1 traffic_light 0.470708 False fountain 1.997760e-01 False space_shuttle 6.480700e-02 False
1241 747103485104099331 https://pbs.twimg.com/media/Cl4-pevXEAAb8VW.jpg 1 Labrador_retriever 0.991954 True golden_retriever 2.228490e-03 True doormat 1.404020e-03 False
1242 747204161125646336 https://pbs.twimg.com/media/Cl6aOBhWEAALuti.jpg 2 coil 0.533699 False dugong 8.795910e-02 False rain_barrel 3.922150e-02 False
1243 747219827526344708 https://pbs.twimg.com/media/Cl6odlVWQAIy5uk.jpg 2 Shetland_sheepdog 0.548018 True marmot 1.655030e-01 False collie 4.300260e-02 True
1244 747461612269887489 https://pbs.twimg.com/media/Cl-EXHSWkAE2IN2.jpg 1 binoculars 0.192717 False barbershop 8.583820e-02 False ballplayer 8.467220e-02 False
1245 747512671126323200 https://pbs.twimg.com/media/Cl-yykwWkAAqUCE.jpg 1 Cardigan 0.111493 True malinois 9.508920e-02 True German_shepherd 8.014560e-02 True
1246 747594051852075008 https://pbs.twimg.com/media/Cl_80k5WkAEbo9m.jpg 1 basenji 0.389136 True dingo 2.702260e-01 False Chihuahua 9.893880e-02 True
1247 747600769478692864 https://pbs.twimg.com/media/CmAC7ehXEAAqSuW.jpg 1 Chesapeake_Bay_retriever 0.804363 True Weimaraner 5.443110e-02 True Labrador_retriever 4.326760e-02 True
1248 747816857231626240 https://pbs.twimg.com/media/CmDHdCoWkAACTB4.jpg 1 Pembroke 0.768923 True Chihuahua 2.905300e-02 True Shetland_sheepdog 2.903540e-02 True
1249 747844099428986880 https://pbs.twimg.com/media/CmDgPTsWEAIi2T1.jpg 1 Pembroke 0.360428 True papillon 2.631340e-01 True Chihuahua 1.312460e-01 True
1250 747885874273214464 https://pbs.twimg.com/media/CmEGMSvUYAAl3ZM.jpg 1 kuvasz 0.408450 True Samoyed 1.413300e-01 True pug 8.301840e-02 True
1251 747933425676525569 https://pbs.twimg.com/media/CmExV2qWkAAn_pN.jpg 1 Samoyed 0.998201 True Eskimo_dog 7.928500e-04 True Great_Pyrenees 2.957500e-04 True
1252 747963614829678593 https://pbs.twimg.com/media/CmFM7ngXEAEitfh.jpg 1 kelpie 0.307672 True Irish_terrier 1.974860e-01 True dingo 1.054750e-01 False
1253 748307329658011649 https://pbs.twimg.com/media/CmKFi-FXEAAeI37.jpg 2 paddle 0.589066 False shovel 3.806230e-02 False mountain_tent 2.920330e-02 False
1254 748324050481647620 https://pbs.twimg.com/media/CmKUwImXIAA58f5.jpg 1 Shetland_sheepdog 0.880499 True collie 1.079010e-01 True Pembroke 3.606670e-03 True
1255 748346686624440324 https://pbs.twimg.com/media/CmKpVtlWAAEnyHm.jpg 1 borzoi 0.596455 True whippet 2.314280e-01 True Saluki 5.826140e-02 True
1256 748568946752774144 https://pbs.twimg.com/ext_tw_video_thumb/74856... 1 Tibetan_terrier 0.328161 True toy_poodle 3.048360e-01 True miniature_poodle 7.087840e-02 True
1257 748575535303884801 https://pbs.twimg.com/media/CmN5ecNWMAE6pnf.jpg 1 muzzle 0.176172 False seat_belt 1.609530e-01 False soft-coated_wheaten_terrier 8.649880e-02 True
1258 748692773788876800 https://pbs.twimg.com/media/CmPkGhFXEAABO1n.jpg 1 ox 0.337871 False plow 2.692870e-01 False oxcart 2.456530e-01 False
1259 748699167502000129 https://pbs.twimg.com/media/CmPp5pOXgAAD_SG.jpg 1 Pembroke 0.849029 True Cardigan 8.362880e-02 True kelpie 2.439450e-02 True
1260 748705597323898880 https://pbs.twimg.com/ext_tw_video_thumb/74870... 1 tiger_shark 0.548497 False great_white_shark 1.302520e-01 False scuba_diver 1.218870e-01 False
1261 748932637671223296 https://pbs.twimg.com/media/CmS-QkQWAAAkUa-.jpg 1 borzoi 0.742912 True wire-haired_fox_terrier 2.040820e-01 True English_setter 2.103230e-02 True
1262 748977405889503236 https://pbs.twimg.com/media/CmTm-XQXEAAEyN6.jpg 1 German_short-haired_pointer 0.742216 True bluetick 1.528100e-01 True English_setter 5.183470e-02 True
1263 749036806121881602 https://pbs.twimg.com/media/CmUciKgWIAA97sH.jpg 1 sulphur-crested_cockatoo 0.960276 False West_Highland_white_terrier 1.952230e-02 True Samoyed 6.395620e-03 True
1264 749064354620928000 https://pbs.twimg.com/media/CmU2DVWWgAArvp3.jpg 2 pug 0.985222 True Brabancon_griffon 3.313660e-03 True Pekinese 2.988880e-03 True
1265 749317047558017024 https://pbs.twimg.com/ext_tw_video_thumb/74931... 1 wire-haired_fox_terrier 0.155144 True Lakeland_terrier 1.083820e-01 True buckeye 7.461670e-02 False
1266 749395845976588288 https://pbs.twimg.com/media/CmZjizYW8AA3FCN.jpg 1 Pomeranian 0.973715 True chow 2.075810e-02 True keeshond 3.784360e-03 True
1267 749403093750648834 https://pbs.twimg.com/media/CmZqIslWIAQFiqe.jpg 1 Chesapeake_Bay_retriever 0.694541 True curly-coated_retriever 7.633530e-02 True Irish_water_spaniel 4.854950e-02 True
1268 749417653287129088 https://pbs.twimg.com/media/CmZ3YH9WEAAowi3.jpg 2 papillon 0.772894 True Shetland_sheepdog 4.240760e-02 True collie 4.231310e-02 True
1269 749774190421639168 https://pbs.twimg.com/media/Cme7pg2XEAATMnP.jpg 1 Pekinese 0.879012 True Chihuahua 5.485500e-02 True Blenheim_spaniel 2.104100e-02 True
1270 749981277374128128 https://pbs.twimg.com/media/CmgBZ7kWcAAlzFD.jpg 1 bow_tie 0.533941 False sunglasses 8.082220e-02 False sunglass 5.077620e-02 False
1271 749996283729883136 https://pbs.twimg.com/media/CmfoyrrW8AA8v7w.jpg 1 Old_English_sheepdog 0.515319 True West_Highland_white_terrier 1.510400e-01 True soft-coated_wheaten_terrier 5.642000e-02 True
1272 750011400160841729 https://pbs.twimg.com/media/CmfmvGUWgAAuVKD.jpg 1 muzzle 0.237620 False Boston_bull 8.714980e-02 True sombrero 6.850990e-02 False
1273 750026558547456000 https://pbs.twimg.com/media/CmieRQRXgAA8MV3.jpg 1 standard_poodle 0.258732 True teddy 1.307600e-01 False toy_poodle 7.172630e-02 True
1274 750041628174217216 https://pbs.twimg.com/media/CmfssOtXYAAKa_Z.jpg 1 Labrador_retriever 0.252031 True Maltese_dog 1.880900e-01 True golden_retriever 1.330170e-01 True
1275 750056684286914561 https://pbs.twimg.com/media/Cmfx2oNW8AAGg4H.jpg 1 Saluki 0.484428 True borzoi 2.635500e-01 True Labrador_retriever 7.700380e-02 True
1276 750071704093859840 https://pbs.twimg.com/media/CmjKOzVWcAAQN6w.jpg 2 redbone 0.382113 True malinois 2.499430e-01 True miniature_pinscher 7.092620e-02 True
1277 750086836815486976 https://pbs.twimg.com/media/Cmf5WLGWYAAcmRw.jpg 1 pug 0.978277 True teddy 3.134460e-03 False Brabancon_griffon 3.061490e-03 True
1278 750101899009982464 https://pbs.twimg.com/media/Cmjlsh1XgAEvhq_.jpg 2 golden_retriever 0.316704 True llama 1.742690e-01 False Labrador_retriever 1.473640e-01 True
1279 750117059602808832 https://pbs.twimg.com/media/Cmjzc-oWEAESFCm.jpg 2 Shih-Tzu 0.814405 True Lhasa 1.752200e-01 True Pekinese 8.072300e-03 True
1280 750132105863102464 https://pbs.twimg.com/media/CmkBKuwWgAAamOI.jpg 1 toy_poodle 0.478018 True miniature_poodle 2.074580e-01 True croquet_ball 8.587890e-02 False
1281 750147208377409536 https://pbs.twimg.com/media/CmkO57iXgAEOxX9.jpg 1 pug 0.977765 True Boston_bull 4.794250e-03 True French_bulldog 4.572840e-03 True
1282 750383411068534784 https://pbs.twimg.com/media/CmnluwbXEAAqnkw.jpg 1 Border_collie 0.672791 True collie 2.701880e-01 True papillon 3.450390e-02 True
1283 750429297815552001 https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg 1 golden_retriever 0.964929 True Labrador_retriever 1.158370e-02 True refrigerator 7.498620e-03 False
1284 750506206503038976 https://pbs.twimg.com/media/CmpVaOZWIAAp3z6.jpg 1 American_black_bear 0.219166 False lesser_panda 2.147150e-01 False titi 9.168510e-02 False
1285 750719632563142656 https://pbs.twimg.com/media/CmsXg9AWgAAs6Ui.jpg 1 Pembroke 0.972587 True Cardigan 1.477170e-02 True basenji 5.798030e-03 True
1286 750868782890057730 https://pbs.twimg.com/media/CmufLLsXYAAsU0r.jpg 4 toy_poodle 0.912648 True miniature_poodle 3.505920e-02 True seat_belt 2.637560e-02 False
1287 751132876104687617 https://pbs.twimg.com/media/CmyPXNOW8AEtaJ-.jpg 1 Labrador_retriever 0.929390 True Chesapeake_Bay_retriever 3.825350e-02 True golden_retriever 7.610200e-03 True
1288 751205363882532864 https://pbs.twimg.com/media/CmzRRY1WcAEoxwY.jpg 2 Labrador_retriever 0.947164 True Chesapeake_Bay_retriever 2.059670e-02 True golden_retriever 1.657920e-02 True
1289 751251247299190784 https://pbs.twimg.com/ext_tw_video_thumb/75125... 1 Walker_hound 0.178852 True German_short-haired_pointer 1.157520e-01 True English_foxhound 1.137960e-01 True
1290 751456908746354688 https://pbs.twimg.com/ext_tw_video_thumb/75145... 1 golden_retriever 0.714409 True Afghan_hound 6.616260e-02 True chow 2.841260e-02 True
1291 751538714308972544 https://pbs.twimg.com/media/Cm4AeG8XEAAulD2.jpg 2 Labrador_retriever 0.516257 True golden_retriever 2.108390e-01 True dingo 1.620220e-01 False
1292 751583847268179968 https://pbs.twimg.com/media/Cm4phTpWcAAgLsr.jpg 1 dalmatian 0.868304 True studio_couch 5.962300e-02 False snow_leopard 1.387630e-02 False
1293 751598357617971201 https://pbs.twimg.com/media/Cm42t5vXEAAv4CS.jpg 1 toy_poodle 0.757756 True miniature_poodle 3.514950e-02 True Scottish_deerhound 2.769820e-02 True
1294 751830394383790080 https://pbs.twimg.com/media/Cm8JwBqW8AAFOEn.jpg 1 chow 0.703569 True Pomeranian 7.663670e-02 True Siamese_cat 4.595910e-02 False
1295 751937170840121344 https://pbs.twimg.com/media/Cm9q2d3XEAAqO2m.jpg 1 Lakeland_terrier 0.424168 True teddy 2.605620e-01 False golden_retriever 1.274320e-01 True
1296 752173152931807232 https://pbs.twimg.com/media/CnBBfNuWcAAkOgO.jpg 1 Labrador_retriever 0.527659 True German_shepherd 1.747650e-01 True Chihuahua 4.552540e-02 True
1297 752309394570878976 https://pbs.twimg.com/ext_tw_video_thumb/67535... 1 upright 0.303415 False golden_retriever 1.813510e-01 True Brittany_spaniel 1.620840e-01 True
1298 752334515931054080 https://pbs.twimg.com/ext_tw_video_thumb/75233... 1 Bedlington_terrier 0.399163 True standard_poodle 8.642490e-02 True wire-haired_fox_terrier 7.523110e-02 True
1299 752519690950500352 https://pbs.twimg.com/media/CnF8qVDWYAAh0g1.jpg 3 swing 0.999984 False Labrador_retriever 1.002880e-05 True Eskimo_dog 1.434470e-06 True
1300 752660715232722944 https://pbs.twimg.com/media/CnH87L6XYAAF7I_.jpg 2 goose 0.339324 False English_setter 5.051180e-02 True basset 4.909330e-02 True
1301 752682090207055872 https://pbs.twimg.com/media/CnIQXdYWgAAnsZZ.jpg 2 German_shepherd 0.299966 True Eskimo_dog 2.783550e-01 True Siberian_husky 1.785200e-01 True
1302 752917284578922496 https://pbs.twimg.com/media/CnLmRiYXEAAO_8f.jpg 1 German_shepherd 0.609283 True malinois 3.524600e-01 True kelpie 1.610520e-02 True
1303 753026973505581056 https://pbs.twimg.com/media/CnNKCKKWEAASCMI.jpg 3 Pembroke 0.868511 True Cardigan 1.037080e-01 True Shetland_sheepdog 1.814160e-02 True
1304 753294487569522689 https://pbs.twimg.com/media/CnQ9Vq1WEAEYP01.jpg 1 chow 0.194773 True monitor 1.023050e-01 False Siberian_husky 8.685470e-02 True
1305 753375668877008896 https://pbs.twimg.com/media/CnSHLFeWgAAwV-I.jpg 1 bluetick 0.360071 True crutch 1.348160e-01 False tripod 9.820660e-02 False
1306 753398408988139520 https://pbs.twimg.com/ext_tw_video_thumb/75339... 1 whippet 0.163794 True Italian_greyhound 1.571920e-01 True English_foxhound 1.429950e-01 True
1307 753420520834629632 https://pbs.twimg.com/ext_tw_video_thumb/75342... 1 balloon 0.267961 False lakeside 8.576370e-02 False rapeseed 4.080890e-02 False
1308 753655901052166144 https://pbs.twimg.com/media/CnWGCpdWgAAWZTI.jpg 1 miniature_pinscher 0.456092 True toy_terrier 1.531260e-01 True Italian_greyhound 1.441470e-01 True
1309 754011816964026368 https://pbs.twimg.com/media/CnbJuPoXEAAjcVF.jpg 1 French_bulldog 0.600985 True Boston_bull 2.731760e-01 True boxer 5.677150e-02 True
1310 754120377874386944 https://pbs.twimg.com/media/CncseIzWgAA4ghH.jpg 1 chow 0.168909 True Norfolk_terrier 1.291140e-01 True Pomeranian 1.208220e-01 True
1311 754449512966619136 https://pbs.twimg.com/media/CnhXzpvW8AAQ1MB.jpg 1 beagle 0.858513 True basset 7.601190e-02 True English_foxhound 1.624560e-02 True
1312 754482103782404096 https://pbs.twimg.com/ext_tw_video_thumb/75448... 1 tub 0.596796 False bathtub 3.810980e-01 False shower_curtain 1.762880e-02 False
1313 754747087846248448 https://pbs.twimg.com/media/CnlmeL3WgAA4c84.jpg 1 rotisserie 0.471493 False cash_machine 2.508370e-01 False sliding_door 1.178720e-01 False
1314 754856583969079297 https://pbs.twimg.com/media/CnnKCKNWgAAcOB8.jpg 2 golden_retriever 0.872385 True Labrador_retriever 9.996310e-02 True cocker_spaniel 6.050830e-03 True
1315 754874841593970688 https://pbs.twimg.com/media/CWza7kpWcAAdYLc.jpg 1 pug 0.272205 True bull_mastiff 2.515300e-01 True bath_towel 1.168060e-01 False
1316 755110668769038337 https://pbs.twimg.com/ext_tw_video_thumb/75511... 1 Labrador_retriever 0.708974 True golden_retriever 1.143140e-01 True Great_Pyrenees 6.581340e-02 True
1317 755206590534418437 https://pbs.twimg.com/media/CnsIT0WWcAAul8V.jpg 1 web_site 0.906673 False printer 8.600270e-03 False carton 4.533190e-03 False
1318 755955933503782912 https://pbs.twimg.com/ext_tw_video_thumb/75595... 1 Pekinese 0.596882 True Maltese_dog 1.764780e-01 True Great_Pyrenees 2.677530e-02 True
1319 756275833623502848 https://pbs.twimg.com/media/Cn7U2xlW8AI9Pqp.jpg 1 Airedale 0.602957 True Irish_terrier 8.698080e-02 True bloodhound 8.627650e-02 True
1320 756288534030475264 https://pbs.twimg.com/media/Cn7gaHrWIAAZJMt.jpg 3 conch 0.925621 False French_bulldog 3.249220e-02 True tiger_cat 6.679080e-03 False
1321 756303284449767430 https://pbs.twimg.com/media/Cn7tyyZWYAAPlAY.jpg 1 golden_retriever 0.981652 True cocker_spaniel 6.790300e-03 True Labrador_retriever 4.324510e-03 True
1322 756526248105566208 https://pbs.twimg.com/media/Cn-4m2CXYAErPGe.jpg 1 geyser 0.991273 False volcano 4.672510e-03 False fountain 1.234030e-03 False
1323 756651752796094464 https://pbs.twimg.com/media/CoAqwPTW8AAiJlz.jpg 1 Pembroke 0.294808 True kelpie 2.823010e-01 True Cardigan 1.126010e-01 True
1324 756939218950160384 https://pbs.twimg.com/media/CoEwMXeWEAAaIz5.jpg 1 golden_retriever 0.790371 True cocker_spaniel 1.302680e-01 True Labrador_retriever 6.462870e-02 True
1325 756998049151549440 https://pbs.twimg.com/media/CoFlsGAWgAA2YeV.jpg 4 golden_retriever 0.678555 True Labrador_retriever 7.263200e-02 True Border_terrier 4.903300e-02 True
1326 757354760399941633 https://pbs.twimg.com/media/CoKqIndWgAAattd.jpg 1 Italian_greyhound 0.914667 True whippet 4.777370e-02 True ice_lolly 1.547680e-02 False
1327 757393109802180609 https://pbs.twimg.com/media/CoLNAq6WAAAkmdJ.jpg 2 Labrador_retriever 0.787125 True Chesapeake_Bay_retriever 1.126760e-01 True Rottweiler 4.803860e-02 True
1328 757400162377592832 https://pbs.twimg.com/media/CoLTbbzXYAElNM6.jpg 1 seat_belt 0.523926 False golden_retriever 8.780030e-02 True Tibetan_mastiff 7.512670e-02 True
1329 757596066325864448 https://pbs.twimg.com/media/CoOFmk3WEAAG6ql.jpg 1 doormat 0.845256 False wallet 9.571800e-02 False wool 2.607190e-02 False
1330 757597904299253760 https://pbs.twimg.com/media/CoOGZjiWAAEMKGx.jpg 1 doormat 0.836106 False wallet 5.662690e-02 False purse 5.133350e-02 False
1331 757611664640446465 https://pbs.twimg.com/media/CoOTyXJXEAAtjs9.jpg 1 bluetick 0.829259 True beagle 1.453580e-01 True Walker_hound 1.959530e-02 True
1332 757725642876129280 https://pbs.twimg.com/media/CoP7c4bWcAAr55g.jpg 2 seat_belt 0.425176 False Labrador_retriever 1.281280e-01 True Siamese_cat 9.124110e-02 False
1333 757729163776290825 https://pbs.twimg.com/media/CWyD2HGUYAQ1Xa7.jpg 2 cash_machine 0.802333 False schipperke 4.551860e-02 True German_shepherd 2.335350e-02 True
1334 757741869644341248 https://pbs.twimg.com/media/CoQKNY7XYAE_cuX.jpg 1 skunk 0.609715 False Old_English_sheepdog 1.288990e-01 True Siberian_husky 1.907610e-02 True
1335 758041019896193024 https://pbs.twimg.com/media/CoUaSKEXYAAYsAl.jpg 1 bookshop 0.794272 False Cardigan 5.126530e-02 True Bernese_mountain_dog 2.659630e-02 True
1336 758355060040593408 https://pbs.twimg.com/media/CoY324eWYAEiDOG.jpg 1 Pembroke 0.987643 True Cardigan 1.211210e-02 True Siamese_cat 1.174770e-04 False
1337 758405701903519748 https://pbs.twimg.com/media/CoZl9fXWgAMox0n.jpg 4 Chesapeake_Bay_retriever 0.702954 True laptop 9.227750e-02 False notebook 3.272680e-02 False
1338 758467244762497024 https://pbs.twimg.com/ext_tw_video_thumb/75846... 1 Labrador_retriever 0.436377 True Chihuahua 1.139560e-01 True American_Staffordshire_terrier 9.968910e-02 True
1339 758474966123810816 https://pbs.twimg.com/media/Coak48zWAAAhBxV.jpg 1 Pembroke 0.546145 True Cardigan 2.442000e-01 True German_shepherd 1.004290e-01 True
1340 758740312047005698 https://pbs.twimg.com/media/CoeWSJcUIAAv3Bq.jpg 1 Chesapeake_Bay_retriever 0.848514 True Labrador_retriever 1.100540e-01 True curly-coated_retriever 2.520140e-02 True
1341 758828659922702336 https://pbs.twimg.com/media/Cofmom_VUAA4dRO.jpg 1 Chesapeake_Bay_retriever 0.480048 True vizsla 2.645220e-01 True Weimaraner 1.218400e-01 True
1342 758854675097526272 https://pbs.twimg.com/media/Cof-SuqVYAAs4kZ.jpg 4 barrow 0.974047 False Old_English_sheepdog 2.379140e-02 True komondor 1.246300e-03 True
1343 759047813560868866 https://pbs.twimg.com/media/Coit84_VYAEMtLi.jpg 1 Labrador_retriever 0.778546 True bathing_cap 1.542540e-01 False golden_retriever 2.497160e-02 True
1344 759099523532779520 https://pbs.twimg.com/media/Cojc_Q0WcAAqi_K.jpg 1 Shetland_sheepdog 0.129034 True kelpie 1.175080e-01 True Siberian_husky 1.067080e-01 True
1345 759159934323924993 https://pbs.twimg.com/media/CU1zsMSUAAAS0qW.jpg 1 Irish_terrier 0.254856 True briard 2.277160e-01 True soft-coated_wheaten_terrier 2.232630e-01 True
1346 759197388317847553 https://pbs.twimg.com/media/Cok1_sjXgAU3xpp.jpg 1 kuvasz 0.511341 True golden_retriever 7.689910e-02 True white_wolf 6.326940e-02 False
1347 759447681597108224 https://pbs.twimg.com/media/CooZok_WEAA7oPw.jpg 1 kuvasz 0.223148 True Bedlington_terrier 2.207310e-01 True teddy 1.813030e-01 False
1348 759557299618865152 https://pbs.twimg.com/media/Cop9VVUXgAAhX9u.jpg 2 golden_retriever 0.763333 True Chesapeake_Bay_retriever 1.942510e-01 True Labrador_retriever 1.222540e-02 True
1349 759566828574212096 https://pbs.twimg.com/media/CkNjahBXAAQ2kWo.jpg 1 Labrador_retriever 0.967397 True golden_retriever 1.664140e-02 True ice_bear 1.485760e-02 False
1350 759793422261743616 https://pbs.twimg.com/media/CotUFZEWcAA2Pku.jpg 2 golden_retriever 0.985876 True Labrador_retriever 1.947770e-03 True kuvasz 1.751740e-03 True
1351 759846353224826880 https://pbs.twimg.com/media/CouEOZhWAAAgFpE.jpg 1 Sussex_spaniel 0.355395 True vizsla 1.410940e-01 True otterhound 9.219820e-02 True
1352 759923798737051648 https://pbs.twimg.com/media/CovKqSYVIAAUbUW.jpg 1 Labrador_retriever 0.324579 True seat_belt 1.091680e-01 False pug 1.024660e-01 True
1353 760190180481531904 https://pbs.twimg.com/media/Coy87yiWYAACtPf.jpg 1 balloon 0.917525 False confectionery 4.932910e-02 False maraca 1.764780e-02 False
1354 760252756032651264 https://pbs.twimg.com/media/Coz12OLWgAADdys.jpg 1 radio_telescope 0.155279 False dam 1.545150e-01 False crane 9.804000e-02 False
1355 760290219849637889 https://pbs.twimg.com/ext_tw_video_thumb/76028... 1 Old_English_sheepdog 0.302200 True Lhasa 2.588030e-01 True briard 1.792000e-01 True
1356 760539183865880579 https://pbs.twimg.com/media/Co36VZfWcAEN3R3.jpg 1 Samoyed 0.988013 True malamute 4.518240e-03 True West_Highland_white_terrier 1.189250e-03 True
1357 760641137271070720 https://pbs.twimg.com/media/Co5XExUWgAAL5L_.jpg 1 axolotl 0.132695 False killer_whale 1.311130e-01 False sea_lion 6.965200e-02 False
1358 760656994973933572 https://pbs.twimg.com/media/Co5lf-KW8AAIwJw.jpg 1 golden_retriever 0.760546 True Labrador_retriever 2.320790e-01 True redbone 2.874170e-03 True
1359 760893934457552897 https://pbs.twimg.com/media/Co88_ujWEAErCg7.jpg 1 Blenheim_spaniel 0.113992 True cocker_spaniel 1.057800e-01 True borzoi 7.393450e-02 True
1360 761004547850530816 https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg 1 golden_retriever 0.735163 True Sussex_spaniel 6.489700e-02 True Labrador_retriever 4.770370e-02 True
1361 761227390836215808 https://pbs.twimg.com/media/CpBsRleW8AEfO8G.jpg 1 cougar 0.306512 False French_bulldog 2.808020e-01 True boxer 5.452340e-02 True
1362 761292947749015552 https://pbs.twimg.com/media/CpCn5aXXgAAOPTm.jpg 1 standard_poodle 0.660893 True Samoyed 3.148860e-01 True miniature_poodle 8.833830e-03 True
1363 761334018830917632 https://pbs.twimg.com/media/CpDNQGkWEAENiYZ.jpg 1 Norwegian_elkhound 0.822936 True malinois 8.615250e-02 True German_shepherd 6.333290e-02 True
1364 761371037149827077 https://pbs.twimg.com/tweet_video_thumb/CeBym7... 1 brown_bear 0.713293 False Indian_elephant 1.728440e-01 False water_buffalo 3.890220e-02 False
1365 761599872357261312 https://pbs.twimg.com/media/CpG_CrlWYAYyuP3.jpg 1 Gordon_setter 0.240427 True Saluki 2.242690e-01 True Doberman 1.297300e-01 True
1366 761672994376806400 https://pbs.twimg.com/ext_tw_video_thumb/76167... 1 gondola 0.318851 False sea_lion 3.065250e-01 False pool_table 1.115650e-01 False
1367 761745352076779520 https://pbs.twimg.com/media/CpJDWqhW8AAFt45.jpg 1 paddle 0.393118 False canoe 1.780880e-01 False lakeside 9.971260e-02 False
1368 761750502866649088 https://pbs.twimg.com/media/CYLDikFWEAAIy1y.jpg 1 golden_retriever 0.586937 True Labrador_retriever 3.982600e-01 True kuvasz 5.409690e-03 True
1369 761976711479193600 https://pbs.twimg.com/media/CpMVxoRXgAAh350.jpg 3 Labrador_retriever 0.475552 True Chesapeake_Bay_retriever 8.289800e-02 True Staffordshire_bullterrier 4.846400e-02 True
1370 762035686371364864 https://pbs.twimg.com/ext_tw_video_thumb/76203... 1 home_theater 0.063152 False cash_machine 4.669210e-02 False theater_curtain 4.627680e-02 False
1371 762316489655476224 https://pbs.twimg.com/media/CpRKzZKWAAABGh7.jpg 1 African_grey 0.270468 False Madagascar_cat 7.618650e-02 False television 3.330580e-02 False
1372 762464539388485633 https://pbs.twimg.com/media/CpTRc4DUEAAYTq6.jpg 4 chow 0.999953 True Tibetan_mastiff 2.335910e-05 True dhole 3.010330e-06 False
1373 762471784394268675 https://pbs.twimg.com/ext_tw_video_thumb/76247... 1 Samoyed 0.540276 True standard_poodle 2.798020e-01 True toy_poodle 1.020580e-01 True
1374 762699858130116608 https://pbs.twimg.com/media/CpWnecZWIAAUFwt.jpg 1 kelpie 0.519047 True German_shepherd 2.960690e-01 True dingo 6.100530e-02 False
1375 763103485927849985 https://pbs.twimg.com/media/CpcWknPXYAAeLP9.jpg 2 seat_belt 0.685821 False ice_bear 8.159720e-02 False chow 3.908480e-02 True
1376 763183847194451968 https://pbs.twimg.com/media/CpdfpzKWYAAWSUi.jpg 1 miniature_poodle 0.354674 True toy_poodle 3.386420e-01 True teddy 1.558280e-01 False
1377 763837565564780549 https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg 1 malamute 0.375098 True jean 6.936170e-02 False keeshond 5.052760e-02 True
1378 764259802650378240 https://pbs.twimg.com/media/CpsyNtXWgAAqvs3.jpg 1 German_shepherd 0.973677 True malinois 2.594970e-02 True kelpie 1.915680e-04 True
1379 764857477905154048 https://pbs.twimg.com/media/Cp1R0ZTWcAAaPO4.jpg 1 Bernese_mountain_dog 0.792059 True Appenzeller 1.550340e-01 True EntleBucher 3.837380e-02 True
1380 765222098633691136 https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg 1 dalmatian 0.556595 True whippet 1.510470e-01 True American_Staffordshire_terrier 9.643550e-02 True
1381 765371061932261376 https://pbs.twimg.com/media/Cp8k6oRWcAUL78U.jpg 2 golden_retriever 0.829456 True Labrador_retriever 8.937090e-02 True kuvasz 1.702750e-02 True
1382 765395769549590528 https://pbs.twimg.com/media/Cp87Y0jXYAQyjuV.jpg 1 Pembroke 0.509491 True Cardigan 3.304010e-01 True Shetland_sheepdog 3.887490e-02 True
1383 765669560888528897 https://pbs.twimg.com/media/CqA0XcYWAAAzltT.jpg 1 beagle 0.993333 True Walker_hound 2.902190e-03 True basset 2.415180e-03 True
1384 765719909049503744 https://pbs.twimg.com/media/CqBiMAgWAAEJKgI.jpg 1 golden_retriever 0.969518 True Labrador_retriever 2.169610e-02 True Border_terrier 2.074550e-03 True
1385 766008592277377025 https://pbs.twimg.com/media/CqFouXOXYAAYpzG.jpg 1 Welsh_springer_spaniel 0.728153 True basset 1.038420e-01 True Brittany_spaniel 6.241430e-02 True
1386 766069199026450432 https://pbs.twimg.com/media/CqGf3xaXYAEh3ak.jpg 1 redbone 0.484855 True beagle 4.375270e-01 True basset 1.058540e-02 True
1387 766078092750233600 https://pbs.twimg.com/media/ChK1tdBWwAQ1flD.jpg 1 toy_poodle 0.420463 True miniature_poodle 1.326400e-01 True Chesapeake_Bay_retriever 1.215230e-01 True
1388 766313316352462849 https://pbs.twimg.com/media/CqJ95SRWgAATPK_.jpg 1 toy_poodle 0.966896 True miniature_poodle 1.642430e-02 True cocker_spaniel 1.022710e-02 True
1389 766423258543644672 https://pbs.twimg.com/media/CqLh4yJWcAAHomv.jpg 2 keeshond 0.995823 True Pomeranian 3.897210e-03 True Norwegian_elkhound 2.531090e-04 True
1390 766693177336135680 https://pbs.twimg.com/media/CqPXYLLXEAAU2HC.jpg 1 Doberman 0.948355 True vizsla 1.503200e-02 True Rhodesian_ridgeback 9.630840e-03 True
1391 766793450729734144 https://pbs.twimg.com/media/CqQykxrWYAAlD8g.jpg 1 beagle 0.451697 True basset 1.975130e-01 True bloodhound 7.269860e-02 True
1392 767122157629476866 https://pbs.twimg.com/media/CqVdiBJWIAEDZB4.jpg 2 toy_poodle 0.873841 True miniature_poodle 5.919180e-02 True Irish_terrier 3.530600e-02 True
1393 767191397493538821 https://pbs.twimg.com/media/CqWcgcqWcAI43jm.jpg 1 patio 0.708665 False boathouse 1.100560e-01 False pier 3.953230e-02 False
1394 767500508068192258 https://pbs.twimg.com/media/Cqa1ofnXEAAG0yn.jpg 1 chow 0.483228 True golden_retriever 1.650630e-01 True Norfolk_terrier 6.017290e-02 True
1395 767754930266464257 https://pbs.twimg.com/media/CqedCQWWgAIab9L.jpg 1 vizsla 0.307794 True fountain 1.421850e-01 False Chesapeake_Bay_retriever 1.139030e-01 True
1396 767884188863397888 https://pbs.twimg.com/media/CqgSl4DWcAA-x-o.jpg 3 coral_reef 0.327740 False cliff 1.571820e-01 False lakeside 4.880960e-02 False
1397 768193404517830656 https://pbs.twimg.com/media/Cqkr0wiW8AAn2Oi.jpg 1 lion 0.396984 False ram 3.008510e-01 False cheetah 9.447400e-02 False
1398 768473857036525572 https://pbs.twimg.com/media/Cqoq5PGWAAA-U8T.jpg 1 Labrador_retriever 0.739170 True Chesapeake_Bay_retriever 2.464880e-01 True kelpie 6.892340e-03 True
1399 768596291618299904 https://pbs.twimg.com/media/CqqaPjqWIAAOyNL.jpg 1 Great_Pyrenees 0.729745 True golden_retriever 2.379610e-01 True Labrador_retriever 2.090330e-02 True
1400 768609597686943744 https://pbs.twimg.com/media/CqqmWa7WcAAIM-n.jpg 1 basenji 0.183283 True Italian_greyhound 1.360120e-01 True whippet 6.012990e-02 True
1401 768855141948723200 https://pbs.twimg.com/media/CquFrCKWAAAr32m.jpg 1 chow 0.720219 True Brabancon_griffon 5.836530e-02 True Rottweiler 5.511350e-02 True
1402 768970937022709760 https://pbs.twimg.com/ext_tw_video_thumb/76896... 1 Pomeranian 0.182358 True golden_retriever 1.106580e-01 True mousetrap 8.639890e-02 False
1403 769212283578875904 https://pbs.twimg.com/media/CqzKfQgXEAAWIY-.jpg 1 golden_retriever 0.166538 True Pekinese 1.482150e-01 True cocker_spaniel 8.273510e-02 True
1404 769695466921623552 https://pbs.twimg.com/media/Cq6B8V6XYAA1T1R.jpg 1 pug 0.407117 True muzzle 1.656380e-01 False kuvasz 4.583720e-02 True
1405 769940425801170949 https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg 1 miniature_pinscher 0.796313 True Chihuahua 1.554130e-01 True Staffordshire_bullterrier 3.094330e-02 True
1406 770069151037685760 https://pbs.twimg.com/media/Cq_Vy9KWcAIUIuv.jpg 1 Boston_bull 0.414965 True American_Staffordshire_terrier 2.869850e-01 True Staffordshire_bullterrier 1.149700e-01 True
1407 770093767776997377 https://pbs.twimg.com/media/CkjMx99UoAM2B1a.jpg 1 golden_retriever 0.843799 True Labrador_retriever 5.295590e-02 True kelpie 3.571110e-02 True
1408 770293558247038976 https://pbs.twimg.com/media/CrCh5RgW8AAXW4U.jpg 1 Italian_greyhound 0.931668 True Mexican_hairless 3.889620e-02 True whippet 1.315140e-02 True
1409 770414278348247044 https://pbs.twimg.com/media/CrEPsfWXEAAKvem.jpg 1 maillot 0.580528 False maillot 8.144890e-02 False golden_retriever 5.356960e-02 True
1410 770655142660169732 https://pbs.twimg.com/media/CrHqwjWXgAAgJSe.jpg 1 Madagascar_cat 0.494803 False skunk 1.611840e-01 False paper_towel 9.157150e-02 False
1411 770772759874076672 https://pbs.twimg.com/media/CrJVupHXgAA4Dkk.jpg 1 chow 0.979515 True golden_retriever 1.021870e-02 True Pomeranian 4.606040e-03 True
1412 770787852854652928 https://pbs.twimg.com/media/CrJjdZmXgAEWLSD.jpg 1 Bernese_mountain_dog 0.787812 True Greater_Swiss_Mountain_dog 1.639460e-01 True EntleBucher 2.029340e-02 True
1413 771004394259247104 https://pbs.twimg.com/media/CrMmVqyWcAIDCHI.jpg 1 home_theater 0.414338 False iPod 5.274130e-02 False pop_bottle 4.882060e-02 False
1414 771014301343748096 https://pbs.twimg.com/media/CrMxZzgWIAQUxzx.jpg 1 meerkat 0.202335 False doormat 1.117900e-01 False macaque 8.892530e-02 False
1415 771102124360998913 https://pbs.twimg.com/media/CrOBSfgXgAABsTE.jpg 1 Labrador_retriever 0.568789 True pug 1.799180e-01 True Staffordshire_bullterrier 3.443740e-02 True
1416 771136648247640064 https://pbs.twimg.com/media/CrOgsIBWYAA8Dtb.jpg 1 bathtub 0.368660 False golden_retriever 2.974020e-01 True tub 2.017110e-01 False
1417 771171053431250945 https://pbs.twimg.com/media/CVgdFjNWEAAxmbq.jpg 3 Samoyed 0.978833 True Pomeranian 1.276300e-02 True Eskimo_dog 1.853050e-03 True
1418 771380798096281600 https://pbs.twimg.com/media/CrR-vVfXEAAk6Gg.jpg 1 collie 0.503728 True Border_collie 4.509440e-01 True English_springer 1.269280e-02 True
1419 771500966810099713 https://pbs.twimg.com/media/CrTsCPHWYAANdzC.jpg 1 Labrador_retriever 0.833952 True golden_retriever 1.032230e-01 True soccer_ball 1.209390e-02 False
1420 771770456517009408 https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg 1 papillon 0.533180 True collie 1.920310e-01 True Border_collie 1.216260e-01 True
1421 772102971039580160 https://pbs.twimg.com/media/CrcPjh0WcAA_SPT.jpg 1 Pembroke 0.541780 True Cardigan 2.605040e-01 True Shetland_sheepdog 6.370310e-02 True
1422 772114945936949249 https://pbs.twimg.com/media/Crcacf9WgAEcrMh.jpg 1 Chihuahua 0.803293 True toy_terrier 5.298000e-02 True Italian_greyhound 3.723880e-02 True
1423 772117678702071809 https://pbs.twimg.com/media/Crcc7pqXEAAM5O2.jpg 1 Labrador_retriever 0.217821 True beagle 1.576770e-01 True golden_retriever 1.277260e-01 True
1424 772152991789019136 https://pbs.twimg.com/media/Crc9DEoWEAE7RLH.jpg 2 golden_retriever 0.275318 True Irish_setter 1.009880e-01 True vizsla 7.352490e-02 True
1425 772193107915964416 https://pbs.twimg.com/media/Crdhh_1XEAAHKHi.jpg 1 Pembroke 0.367945 True Chihuahua 2.235220e-01 True Pekinese 1.648710e-01 True
1426 772581559778025472 https://pbs.twimg.com/media/CrjC0JAWAAAjz6n.jpg 3 Newfoundland 0.574345 True Border_collie 1.283520e-01 True Saint_Bernard 5.947550e-02 True
1427 772615324260794368 https://pbs.twimg.com/media/Cp6db4-XYAAMmqL.jpg 1 dalmatian 0.556595 True whippet 1.510470e-01 True American_Staffordshire_terrier 9.643550e-02 True
1428 772826264096874500 https://pbs.twimg.com/media/CrmhYYIXEAEcyYY.jpg 1 basset 0.915351 True Walker_hound 7.241590e-02 True beagle 8.228940e-03 True
1429 772877495989305348 https://pbs.twimg.com/ext_tw_video_thumb/77287... 1 tabby 0.218303 False Norwegian_elkhound 1.385230e-01 True wombat 7.421720e-02 False
1430 773191612633579521 https://pbs.twimg.com/media/CrrtqjdXEAINleR.jpg 1 Blenheim_spaniel 0.427766 True Shih-Tzu 2.192560e-01 True Welsh_springer_spaniel 1.446140e-01 True
1431 773247561583001600 https://pbs.twimg.com/media/Crsgi9dWEAApQd8.jpg 1 seat_belt 0.713588 False miniature_pinscher 8.336880e-02 True Brabancon_griffon 7.569610e-02 True
1432 773308824254029826 https://pbs.twimg.com/media/CrtYRMEWIAAUkCl.jpg 1 shopping_cart 0.572349 False Labrador_retriever 1.514060e-01 True shopping_basket 1.071020e-01 False
1433 773547596996571136 https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg 1 Norwegian_elkhound 0.372202 True Chesapeake_Bay_retriever 1.371870e-01 True malamute 7.143620e-02 True
1434 773670353721753600 https://pbs.twimg.com/media/CryhFC0XEAA9wp_.jpg 1 Old_English_sheepdog 0.969311 True Maltese_dog 1.324300e-02 True soft-coated_wheaten_terrier 4.857310e-03 True
1435 773704687002451968 https://pbs.twimg.com/media/CrzATQqWAAEHq2t.jpg 2 silky_terrier 0.324251 True Yorkshire_terrier 1.812100e-01 True Airedale 1.334360e-01 True
1436 773922284943896577 https://pbs.twimg.com/media/Cr2GNdlW8AAbojw.jpg 1 Pomeranian 0.554331 True Samoyed 4.321580e-01 True chow 3.199420e-03 True
1437 773985732834758656 https://pbs.twimg.com/media/Cr2_6R8WAAAUMtc.jpg 4 giant_panda 0.451149 False fur_coat 1.480010e-01 False pug 1.095700e-01 True
1438 774314403806253056 https://pbs.twimg.com/media/Cr7q1VxWIAA5Nm7.jpg 3 Eskimo_dog 0.596045 True Siberian_husky 2.230670e-01 True Saluki 3.632470e-02 True
1439 774639387460112384 https://pbs.twimg.com/media/CsASZqRW8AA3Szw.jpg 1 Walker_hound 0.627593 True basenji 1.287050e-01 True Ibizan_hound 1.262820e-01 True
1440 774757898236878852 https://pbs.twimg.com/media/CsB-MYiXgAEQU20.jpg 1 toy_poodle 0.719941 True miniature_poodle 2.515460e-01 True Lakeland_terrier 7.008380e-03 True
1441 775085132600442880 https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg 1 chow 0.316565 True golden_retriever 2.419290e-01 True Pomeranian 1.575240e-01 True
1442 775364825476165632 https://pbs.twimg.com/media/CsKmMB2WAAAXcAy.jpg 3 beagle 0.571229 True Chihuahua 1.752570e-01 True Pembroke 3.430630e-02 True
1443 775729183532220416 https://pbs.twimg.com/media/CsPxk85XEAAeMQj.jpg 1 web_site 0.989407 False hand-held_computer 2.139020e-03 False menu 2.115360e-03 False
1444 775733305207554048 https://pbs.twimg.com/media/CsP1UvaW8AExVSA.jpg 1 long-horned_beetle 0.613852 False ox 2.947280e-02 False rhinoceros_beetle 2.780610e-02 False
1445 775842724423557120 https://pbs.twimg.com/media/CsRY1jAWYAUOx55.jpg 2 chow 0.520022 True bath_towel 2.877470e-02 False French_bulldog 2.599010e-02 True
1446 775898661951791106 https://pbs.twimg.com/media/CiyHLocU4AI2pJu.jpg 1 golden_retriever 0.945523 True Labrador_retriever 4.231910e-02 True doormat 3.956260e-03 False
1447 776088319444877312 https://pbs.twimg.com/media/CsU4NKkW8AUI5eG.jpg 3 web_site 0.999916 False pug 7.657020e-05 True menu 2.164680e-06 False
1448 776113305656188928 https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg 1 mousetrap 0.777468 False black_widow 9.394020e-02 False paddlewheel 1.749190e-02 False
1449 776201521193218049 https://pbs.twimg.com/media/CsWfKadWEAAtmlS.jpg 1 Rottweiler 0.502228 True black-and-tan_coonhound 1.545940e-01 True bloodhound 1.351760e-01 True
1450 776218204058357768 https://pbs.twimg.com/media/CsWuVEdWcAAqbe9.jpg 1 Samoyed 0.940326 True Pomeranian 5.552720e-02 True keeshond 2.226350e-03 True
1451 776477788987613185 https://pbs.twimg.com/media/CsaaaaxWgAEfzM7.jpg 1 Labrador_retriever 0.884839 True Chesapeake_Bay_retriever 5.756510e-02 True paintbrush 5.766080e-03 False
1452 776813020089548800 https://pbs.twimg.com/media/CsfLUDbXEAAu0VF.jpg 1 toy_poodle 0.516610 True miniature_poodle 2.550330e-01 True standard_poodle 1.689890e-01 True
1453 776819012571455488 https://pbs.twimg.com/media/CW88XN4WsAAlo8r.jpg 3 Chihuahua 0.346545 True dalmatian 1.662460e-01 True toy_terrier 1.175020e-01 True
1454 777189768882946048 https://pbs.twimg.com/media/Cskh9nRWYAAUxBP.jpg 2 Chihuahua 0.988412 True Mexican_hairless 4.177220e-03 True hog 1.506580e-03 False
1455 777621514455814149 https://pbs.twimg.com/media/Csqqoo5WEAAMTVW.jpg 1 chow 0.999823 True Norwich_terrier 5.644850e-05 True Pomeranian 2.768060e-05 True
1456 777641927919427584 https://pbs.twimg.com/media/CmoPdmHW8AAi8BI.jpg 1 golden_retriever 0.964929 True Labrador_retriever 1.158370e-02 True refrigerator 7.498620e-03 False
1457 777684233540206592 https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg 1 cocker_spaniel 0.253442 True golden_retriever 1.628500e-01 True otterhound 1.109210e-01 True
1458 777885040357281792 https://pbs.twimg.com/media/CsuaUH2WAAAWJh1.jpg 1 Afghan_hound 0.123529 True basset 1.196820e-01 True Siberian_husky 1.087090e-01 True
1459 778027034220126208 https://pbs.twimg.com/media/Cswbc2yWcAAVsCJ.jpg 1 clumber 0.946718 True cocker_spaniel 1.594990e-02 True Lhasa 6.519110e-03 True
1460 778039087836069888 https://pbs.twimg.com/media/CswmaHmWAAAbdY9.jpg 2 German_shepherd 0.717776 True malinois 1.111750e-01 True Norwegian_elkhound 5.880240e-02 True
1461 778286810187399168 https://pbs.twimg.com/media/Cs0HuUTWcAUpSE8.jpg 1 Boston_bull 0.322070 True pug 2.299030e-01 True muzzle 1.014200e-01 False
1462 778383385161035776 https://pbs.twimg.com/media/Cs1fjyqWIAE2jop.jpg 1 collie 0.345266 True borzoi 3.128230e-01 True Border_collie 2.130110e-01 True
1463 778396591732486144 https://pbs.twimg.com/media/CcG07BYW0AErrC9.jpg 1 hippopotamus 0.581403 False doormat 1.524450e-01 False sea_lion 2.636430e-02 False
1464 778408200802557953 https://pbs.twimg.com/media/Cs12ICuWAAECNRy.jpg 3 Pembroke 0.848362 True Cardigan 1.081240e-01 True beagle 1.194170e-02 True
1465 778624900596654080 https://pbs.twimg.com/media/Cs47N3eWcAEmgiW.jpg 2 Airedale 0.786089 True Irish_terrier 1.214880e-01 True Lakeland_terrier 1.460310e-02 True
1466 778650543019483137 https://pbs.twimg.com/media/Cs5ShihWEAAH2ti.jpg 1 German_shepherd 0.515699 True malinois 3.002920e-01 True kelpie 8.702230e-02 True
1467 778748913645780993 https://pbs.twimg.com/media/Cs6r_-kVIAALh1p.jpg 1 Staffordshire_bullterrier 0.351434 True boxer 2.014780e-01 True American_Staffordshire_terrier 1.428380e-01 True
1468 778990705243029504 https://pbs.twimg.com/media/Cs-H5uhWcAAiNY9.jpg 2 cocker_spaniel 0.715351 True Labrador_retriever 2.070560e-01 True Chihuahua 2.851940e-02 True
1469 779056095788752897 https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg 1 Chihuahua 0.721188 True toy_terrier 1.129430e-01 True kelpie 5.336450e-02 True
1470 779123168116150273 https://pbs.twimg.com/media/CtAAYizW8AAWzBZ.jpg 1 toy_poodle 0.431080 True soft-coated_wheaten_terrier 6.036490e-02 True cocker_spaniel 5.984540e-02 True
1471 779377524342161408 https://pbs.twimg.com/ext_tw_video_thumb/77937... 1 sundial 0.170921 False cash_machine 6.035860e-02 False maze 5.498140e-02 False
1472 779834332596887552 https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg 1 golden_retriever 0.993830 True cocker_spaniel 3.142710e-03 True Great_Pyrenees 9.174140e-04 True
1473 780192070812196864 https://pbs.twimg.com/media/CtPMhwvXYAIt6NG.jpg 1 vizsla 0.144012 True mongoose 9.147360e-02 False hatchet 7.354470e-02 False
1474 780459368902959104 https://pbs.twimg.com/media/CtS_p9kXEAE2nh8.jpg 1 Great_Dane 0.382491 True German_shepherd 3.120260e-01 True bull_mastiff 3.327190e-02 True
1475 780476555013349377 https://pbs.twimg.com/tweet_video_thumb/CtTFZZ... 1 pug 0.919255 True French_bulldog 3.235030e-02 True bull_mastiff 2.846790e-02 True
1476 780496263422808064 https://pbs.twimg.com/media/Ck2d7tJWUAEPTL3.jpg 1 pug 0.997310 True Brabancon_griffon 1.185630e-03 True French_bulldog 4.279890e-04 True
1477 780543529827336192 https://pbs.twimg.com/media/CtUMLzRXgAAbZK5.jpg 1 golden_retriever 0.628312 True Labrador_retriever 3.173650e-01 True Tibetan_mastiff 1.226010e-02 True
1478 780601303617732608 https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg 1 Saint_Bernard 0.995143 True Cardigan 3.043590e-03 True English_springer 1.049550e-03 True
1479 780800785462489090 https://pbs.twimg.com/media/CtX2Kr9XYAAuxrM.jpg 2 Siberian_husky 0.951963 True Eskimo_dog 3.534610e-02 True Pembroke 8.861940e-03 True
1480 780858289093574656 https://pbs.twimg.com/media/CtYqeNHWgAATqYZ.jpg 1 Chesapeake_Bay_retriever 0.488555 True Sussex_spaniel 2.716550e-01 True kelpie 1.069130e-01 True
1481 780931614150983680 https://pbs.twimg.com/media/CtZtJxAXEAAyPGd.jpg 1 padlock 0.731564 False necklace 6.546160e-02 False chain 3.646910e-02 False
1482 781163403222056960 https://pbs.twimg.com/media/Ctc_-BTWEAAQpZh.jpg 1 Shetland_sheepdog 0.973841 True collie 2.518760e-02 True Border_collie 2.973110e-04 True
1483 781251288990355457 https://pbs.twimg.com/media/CteP5H5WcAEhdLO.jpg 2 Mexican_hairless 0.887771 True Italian_greyhound 3.066640e-02 True seat_belt 2.672980e-02 False
1484 781524693396357120 https://pbs.twimg.com/media/CtiIj0AWcAEBDvw.jpg 1 tennis_ball 0.994712 False Chesapeake_Bay_retriever 3.522500e-03 True Labrador_retriever 9.214390e-04 True
1485 781661882474196992 https://pbs.twimg.com/media/CtkFS72WcAAiUrs.jpg 1 Pembroke 0.438087 True golden_retriever 2.269540e-01 True collie 7.065160e-02 True
1486 781955203444699136 https://pbs.twimg.com/media/CtoQGu4XgAQgv5m.jpg 1 pool_table 0.179568 False dining_table 1.543960e-01 False microwave 3.369050e-02 False
1487 782021823840026624 https://pbs.twimg.com/media/CdHwZd0VIAA4792.jpg 1 golden_retriever 0.383223 True cocker_spaniel 1.659300e-01 True Chesapeake_Bay_retriever 1.181990e-01 True
1488 782305867769217024 https://pbs.twimg.com/media/CttPBt0WIAAcsDE.jpg 1 briard 0.504427 True soft-coated_wheaten_terrier 3.906780e-01 True Lhasa 3.459550e-02 True
1489 782598640137187329 https://pbs.twimg.com/media/CtxZTtxUMAEduGo.jpg 1 malamute 0.840871 True Tibetan_mastiff 1.405160e-01 True Eskimo_dog 1.201160e-02 True
1490 782722598790725632 https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg 1 Irish_setter 0.574557 True golden_retriever 3.392510e-01 True seat_belt 4.610820e-02 False
1491 782747134529531904 https://pbs.twimg.com/media/CtzgXgeXYAA1Gxw.jpg 1 golden_retriever 0.560699 True otterhound 1.994820e-01 True clumber 4.068180e-02 True
1492 782969140009107456 https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg 1 seat_belt 0.474292 False golden_retriever 1.713930e-01 True Labrador_retriever 1.105920e-01 True
1493 783085703974514689 https://pbs.twimg.com/media/Ct4URfWUAAQ7lKe.jpg 1 Chesapeake_Bay_retriever 0.240602 True Airedale 1.640880e-01 True boxer 1.345060e-01 True
1494 783334639985389568 https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg 2 Cardigan 0.593858 True Shetland_sheepdog 1.306110e-01 True Pembroke 1.008420e-01 True
1495 783347506784731136 https://pbs.twimg.com/media/CVuQ2LeUsAAIe3s.jpg 1 Cardigan 0.611525 True Pembroke 3.685660e-01 True Chihuahua 3.329570e-03 True
1496 783391753726550016 https://pbs.twimg.com/media/Ct8qn8EWIAAk9zP.jpg 4 Norwegian_elkhound 0.877130 True cairn 8.624060e-02 True keeshond 1.101910e-02 True
1497 783466772167098368 https://pbs.twimg.com/media/Ct9u3ljW8AEnVIm.jpg 1 Chihuahua 0.789000 True miniature_pinscher 1.159160e-01 True toy_terrier 3.629390e-02 True
1498 783695101801398276 https://pbs.twimg.com/media/CuA-iRHXYAAWP8e.jpg 3 chow 0.314265 True golden_retriever 3.004350e-01 True Australian_terrier 4.948690e-02 True
1499 783821107061198850 https://pbs.twimg.com/media/CuCxIzyWEAQTnQA.jpg 1 Lakeland_terrier 0.265659 True golden_retriever 1.964140e-01 True standard_poodle 1.335340e-01 True
1500 783839966405230592 https://pbs.twimg.com/media/CuDCSM-XEAAJw1W.jpg 1 quilt 0.333739 False Siamese_cat 1.362450e-01 False three-toed_sloth 1.174640e-01 False
1501 784431430411685888 https://pbs.twimg.com/media/CuLcNkCXgAEIwK2.jpg 1 miniature_poodle 0.744819 True toy_poodle 2.431920e-01 True standard_poodle 1.092020e-02 True
1502 784517518371221505 https://pbs.twimg.com/media/CuMqhGrXYAQwRqU.jpg 2 malamute 0.757764 True Eskimo_dog 1.512480e-01 True Siberian_husky 8.484020e-02 True
1503 784826020293709826 https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg 1 chow 0.090341 True binoculars 8.349880e-02 False Irish_setter 7.745560e-02 True
1504 785170936622350336 https://pbs.twimg.com/media/CuV8yfxXEAAUlye.jpg 2 seat_belt 0.891193 False Eskimo_dog 2.749440e-02 True Samoyed 1.953030e-02 True
1505 785264754247995392 https://pbs.twimg.com/media/CuXSHNnWcAIWEwn.jpg 1 teddy 0.674893 False cradle 5.673960e-02 False chow 5.613700e-02 True
1506 785533386513321988 https://pbs.twimg.com/media/CubGchjXEAA6gpw.jpg 2 miniature_pinscher 0.436023 True black-and-tan_coonhound 2.580490e-01 True Rottweiler 1.452310e-01 True
1507 785639753186217984 https://pbs.twimg.com/media/CucnLmeWAAALOSC.jpg 1 porcupine 0.978042 False sea_urchin 6.106300e-03 False echidna 5.441970e-03 False
1508 785872687017132033 https://pbs.twimg.com/ext_tw_video_thumb/78587... 1 Great_Pyrenees 0.392108 True golden_retriever 1.983580e-01 True Pekinese 1.433280e-01 True
1509 785927819176054784 https://pbs.twimg.com/media/CugtKeXWEAAamDZ.jpg 1 teddy 0.972070 False toy_poodle 8.492620e-03 True chow 2.882710e-03 True
1510 786036967502913536 https://pbs.twimg.com/media/CtKHLuCWYAA2TTs.jpg 1 golden_retriever 0.993830 True cocker_spaniel 3.142710e-03 True Great_Pyrenees 9.174140e-04 True
1511 786233965241827333 https://pbs.twimg.com/media/CulDnZpWcAAGbZ-.jpg 1 Labrador_retriever 0.478193 True schipperke 2.248170e-01 True Staffordshire_bullterrier 7.739560e-02 True
1512 786363235746385920 https://pbs.twimg.com/media/Cum5LlfWAAAyPcS.jpg 1 golden_retriever 0.929266 True Labrador_retriever 6.286670e-02 True Saluki 2.156690e-03 True
1513 786595970293370880 https://pbs.twimg.com/media/CuqM0fVWAAAboKR.jpg 1 Pembroke 0.709512 True Cardigan 2.871780e-01 True chow 5.701760e-04 True
1514 786664955043049472 https://pbs.twimg.com/media/CurLmoqXgAEPoJ-.jpg 1 Leonberg 0.512034 True keeshond 4.648160e-01 True Pomeranian 7.812490e-03 True
1515 786709082849828864 https://pbs.twimg.com/media/CurzvFTXgAA2_AP.jpg 1 Pomeranian 0.467321 True Persian_cat 1.229780e-01 False chow 1.026540e-01 True
1516 786963064373534720 https://pbs.twimg.com/media/Cuvau3MW8AAxaRv.jpg 1 golden_retriever 0.915303 True Saluki 4.621260e-02 True Labrador_retriever 3.750410e-02 True
1517 787322443945877504 https://pbs.twimg.com/media/Cu0hlfwWYAEdnXO.jpg 1 seat_belt 0.747739 False golden_retriever 1.057030e-01 True dingo 1.725680e-02 False
1518 787397959788929025 https://pbs.twimg.com/media/Cu1mQsDWEAAU_VQ.jpg 1 Chihuahua 0.900483 True toy_terrier 2.108450e-02 True miniature_pinscher 1.948400e-02 True
1519 787717603741622272 https://pbs.twimg.com/media/Cu6I9vvWIAAZG0a.jpg 3 German_shepherd 0.992339 True malinois 4.920390e-03 True kelpie 8.528020e-04 True
1520 787810552592695296 https://pbs.twimg.com/media/Cu7dg2RXYAIaGXE.jpg 2 pug 0.362835 True French_bulldog 2.218640e-01 True English_setter 8.041830e-02 True
1521 788039637453406209 https://pbs.twimg.com/media/Cu-t20yWEAAFHXi.jpg 1 beach_wagon 0.362925 False minivan 3.047590e-01 False limousine 1.017020e-01 False
1522 788070120937619456 https://pbs.twimg.com/media/Co-hmcYXYAASkiG.jpg 1 golden_retriever 0.735163 True Sussex_spaniel 6.489700e-02 True Labrador_retriever 4.770370e-02 True
1523 788150585577050112 https://pbs.twimg.com/media/CvASw6dWcAQmo3X.jpg 3 chow 0.814145 True Pomeranian 1.127040e-01 True Chihuahua 1.588320e-02 True
1524 788178268662984705 https://pbs.twimg.com/media/CvAr88kW8AEKNAO.jpg 2 Samoyed 0.735480 True Pomeranian 7.510100e-02 True Arctic_fox 3.607190e-02 False
1525 788412144018661376 https://pbs.twimg.com/media/CvEAqQoWgAADj5K.jpg 1 golden_retriever 0.805238 True Labrador_retriever 1.137980e-01 True Brittany_spaniel 3.855870e-02 True
1526 788765914992902144 https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg 1 cocker_spaniel 0.500509 True golden_retriever 2.727340e-01 True jigsaw_puzzle 4.147580e-02 False
1527 788908386943430656 https://pbs.twimg.com/media/CvLD-mbWYAAFI8w.jpg 1 remote_control 0.881538 False oscilloscope 3.551310e-02 False golden_retriever 3.408970e-02 True
1528 789137962068021249 https://pbs.twimg.com/media/CvOUw8vWYAAzJDq.jpg 2 Chihuahua 0.746135 True Pekinese 7.038340e-02 True Pembroke 4.923690e-02 True
1529 789268448748703744 https://pbs.twimg.com/media/CvQLdotWcAAZn86.jpg 1 malamute 0.812860 True Siberian_husky 1.208530e-01 True Eskimo_dog 2.426930e-02 True
1530 789530877013393408 https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg 3 schipperke 0.363272 True kelpie 1.970210e-01 True Norwegian_elkhound 1.510240e-01 True
1531 789599242079838210 https://pbs.twimg.com/media/CvU4UZpXgAE1pAV.jpg 2 Chesapeake_Bay_retriever 0.878822 True beagle 1.857030e-02 True Labrador_retriever 1.749850e-02 True
1532 789628658055020548 https://pbs.twimg.com/media/CvVTEnPXYAAWLyL.jpg 1 chow 0.260702 True cougar 8.814270e-02 False Pomeranian 7.988310e-02 True
1533 789986466051088384 https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg 1 tub 0.479477 False bathtub 3.251060e-01 False golden_retriever 7.853050e-02 True
1534 790277117346975746 https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg 1 Labrador_retriever 0.427742 True Great_Dane 1.905030e-01 True curly-coated_retriever 1.464270e-01 True
1535 790337589677002753 https://pbs.twimg.com/media/CvfX2AnWYAAQTay.jpg 1 Pembroke 0.658808 True Cardigan 1.530960e-01 True toy_terrier 1.022990e-01 True
1536 790581949425475584 https://pbs.twimg.com/media/Cvi2FiKWgAAif1u.jpg 2 refrigerator 0.998886 False malinois 1.529990e-04 True kelpie 1.308170e-04 True
1537 790698755171364864 https://pbs.twimg.com/media/CvkgUjbUsAEvo7l.jpg 1 Bernese_mountain_dog 0.996541 True EntleBucher 1.056980e-03 True Appenzeller 9.979070e-04 True
1538 790723298204217344 https://pbs.twimg.com/media/CvaYgDOWgAEfjls.jpg 1 tub 0.479477 False bathtub 3.251060e-01 False golden_retriever 7.853050e-02 True
1539 790946055508652032 https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg 1 dishwasher 0.700466 False golden_retriever 2.457730e-01 True chow 3.901170e-02 True
1540 790987426131050500 https://pbs.twimg.com/media/Cvom3ZJXEAE29TD.jpg 1 cocker_spaniel 0.349195 True flat-coated_retriever 3.095350e-01 True Newfoundland 1.047680e-01 True
1541 791026214425268224 https://pbs.twimg.com/media/CpmyNumW8AAAJGj.jpg 1 malamute 0.375098 True jean 6.936170e-02 False keeshond 5.052760e-02 True
1542 791312159183634433 https://pbs.twimg.com/media/CvtONV4WAAAQ3Rn.jpg 4 miniature_pinscher 0.892925 True toy_terrier 9.552380e-02 True Doberman 3.544260e-03 True
1543 791406955684368384 https://pbs.twimg.com/media/CvukbEkWAAAV-69.jpg 4 Pembroke 0.972629 True Cardigan 2.702590e-02 True basenji 1.525020e-04 True
1544 791672322847637504 https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg 1 golden_retriever 0.705092 True Labrador_retriever 2.197210e-01 True kuvasz 1.596500e-02 True
1545 792050063153438720 https://pbs.twimg.com/media/Cv3tU38WcAASFas.jpg 2 komondor 0.942856 True swab 5.271520e-02 False Tibetan_terrier 2.743000e-03 True
1546 792394556390137856 https://pbs.twimg.com/media/Cv8moW9W8AIHOxR.jpg 2 cocker_spaniel 0.746387 True Irish_setter 9.161510e-02 True miniature_poodle 6.107820e-02 True
1547 792773781206999040 https://pbs.twimg.com/media/CwB_i-zXEAEiP29.jpg 1 Yorkshire_terrier 0.912804 True silky_terrier 6.782250e-02 True Australian_terrier 4.450690e-03 True
1548 792883833364439040 https://pbs.twimg.com/media/CwDjoH3WAAIniIs.jpg 3 jack-o'-lantern 0.999306 False basketball 1.131290e-04 False standard_poodle 8.314510e-05 True
1549 792913359805018113 https://pbs.twimg.com/media/CwD-eCLWIAA6v0B.jpg 4 web_site 0.226716 False lighter 8.194140e-02 False switch 3.900860e-02 False
1550 793120401413079041 https://pbs.twimg.com/media/CwG6zDfWcAA8jBD.jpg 1 Labrador_retriever 0.724944 True golden_retriever 1.697440e-01 True kuvasz 3.550230e-02 True
1551 793135492858580992 https://pbs.twimg.com/media/CwHIg61WIAApnEV.jpg 1 bakery 0.737041 False saltshaker 5.239590e-02 False teddy 4.659260e-02 False
1552 793150605191548928 https://pbs.twimg.com/media/CwHWOZ7W8AAHv8S.jpg 1 Italian_greyhound 0.193869 True bluetick 1.603800e-01 True standard_poodle 1.259820e-01 True
1553 793165685325201412 https://pbs.twimg.com/media/CwHj-jGWAAAnsny.jpg 1 golden_retriever 0.946224 True Labrador_retriever 3.647660e-02 True doormat 2.352850e-03 False
1554 793180763617361921 https://pbs.twimg.com/media/CwHxsdYVMAAqGCJ.jpg 1 Lakeland_terrier 0.266824 True Irish_terrier 2.187830e-01 True Airedale 1.329600e-01 True
1555 793195938047070209 https://pbs.twimg.com/media/CwH_foYWgAEvTyI.jpg 2 Labrador_retriever 0.654762 True golden_retriever 7.410000e-02 True Chihuahua 4.233930e-02 True
1556 793210959003287553 https://pbs.twimg.com/media/CwINKJeW8AYHVkn.jpg 1 doormat 0.874431 False French_bulldog 1.875910e-02 True Boston_bull 1.513440e-02 True
1557 793226087023144960 https://pbs.twimg.com/media/CwIa5CjW8AErZgL.jpg 1 wire-haired_fox_terrier 0.456047 True Lakeland_terrier 2.734280e-01 True English_springer 8.364330e-02 True
1558 793241302385262592 https://pbs.twimg.com/media/CwIougTWcAAMLyq.jpg 1 golden_retriever 0.559308 True Labrador_retriever 3.902220e-01 True cocker_spaniel 3.631570e-02 True
1559 793256262322548741 https://pbs.twimg.com/media/CwI2XCvXEAEO8mc.jpg 1 basset 0.207622 True Walker_hound 6.057420e-02 True beagle 4.122050e-02 True
1560 793271401113350145 https://pbs.twimg.com/media/CwJEIKTWYAAvL-T.jpg 1 Siberian_husky 0.231695 True Eskimo_dog 2.067490e-01 True Pembroke 7.011950e-02 True
1561 793286476301799424 https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg 1 Afghan_hound 0.274637 True borzoi 1.422040e-01 True doormat 1.096770e-01 False
1562 793500921481273345 https://pbs.twimg.com/media/CwMU34YWIAAz1nU.jpg 2 golden_retriever 0.326122 True Labrador_retriever 2.199040e-01 True Chesapeake_Bay_retriever 1.633660e-01 True
1563 793601777308463104 https://pbs.twimg.com/media/CwNwmxvXEAEJ54Z.jpg 1 miniature_pinscher 0.538981 True Chihuahua 2.178300e-01 True toy_terrier 8.914870e-02 True
1564 793614319594401792 https://pbs.twimg.com/media/CvyVxQRWEAAdSZS.jpg 1 golden_retriever 0.705092 True Labrador_retriever 2.197210e-01 True kuvasz 1.596500e-02 True
1565 793845145112371200 https://pbs.twimg.com/media/CwRN8H6WgAASe4X.jpg 1 Old_English_sheepdog 0.765277 True Bedlington_terrier 1.127530e-01 True Kerry_blue_terrier 4.766170e-02 True
1566 793962221541933056 https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg 1 Labrador_retriever 0.861651 True golden_retriever 4.446180e-02 True Staffordshire_bullterrier 1.649670e-02 True
1567 794205286408003585 https://pbs.twimg.com/media/CwWVe_3WEAAHAvx.jpg 3 pedestal 0.662660 False fountain 2.948270e-01 False brass 2.037110e-02 False
1568 794332329137291264 https://pbs.twimg.com/media/CwYJBiHXgAQlvrh.jpg 1 Samoyed 0.988307 True malamute 4.906350e-03 True Great_Pyrenees 2.901290e-03 True
1569 794355576146903043 https://pbs.twimg.com/media/CvJCabcWgAIoUxW.jpg 1 cocker_spaniel 0.500509 True golden_retriever 2.727340e-01 True jigsaw_puzzle 4.147580e-02 False
1570 794926597468000259 https://pbs.twimg.com/media/CwglhZVXgAAc3_w.jpg 1 teddy 0.569566 False bath_towel 1.737450e-01 False toy_poodle 3.766180e-02 True
1571 794983741416415232 https://pbs.twimg.com/media/CvT6IV6WEAQhhV5.jpg 3 schipperke 0.363272 True kelpie 1.970210e-01 True Norwegian_elkhound 1.510240e-01 True
1572 795076730285391872 https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg 2 gas_pump 0.676439 False harvester 4.999530e-02 False swing 4.465960e-02 False
1573 795400264262053889 https://pbs.twimg.com/media/CwnUUGTWIAE8sFR.jpg 2 golden_retriever 0.925494 True Labrador_retriever 5.924080e-02 True tennis_ball 4.495340e-03 False
1574 795464331001561088 https://pbs.twimg.com/ext_tw_video_thumb/79546... 1 golden_retriever 0.193082 True Chesapeake_Bay_retriever 1.579270e-01 True soft-coated_wheaten_terrier 1.246840e-01 True
1575 796031486298386433 https://pbs.twimg.com/media/CwwSaWJWIAASuoY.jpg 1 golden_retriever 0.893775 True Labrador_retriever 7.013980e-02 True doormat 8.418530e-03 False
1576 796080075804475393 https://pbs.twimg.com/media/Cww-msrXcAAxm3K.jpg 1 chow 0.973846 True Tibetan_mastiff 1.410990e-02 True gibbon 2.358320e-03 False
1577 796116448414461957 https://pbs.twimg.com/media/CwxfrguUUAA1cbl.jpg 1 Cardigan 0.700182 True Pembroke 2.607380e-01 True papillon 1.710990e-02 True
1578 796149749086875649 https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg 1 golden_retriever 0.600276 True Labrador_retriever 1.407980e-01 True seat_belt 8.735480e-02 False
1579 796177847564038144 https://pbs.twimg.com/media/Cwx99rpW8AMk_Ie.jpg 1 golden_retriever 0.600276 True Labrador_retriever 1.407980e-01 True seat_belt 8.735480e-02 False
1580 796387464403357696 https://pbs.twimg.com/media/Cw1WKu1UQAAvWsu.jpg 1 Pekinese 0.461164 True Pomeranian 2.886500e-01 True Siamese_cat 5.242300e-02 False
1581 796484825502875648 https://pbs.twimg.com/media/Cw2uty8VQAAB0pL.jpg 1 cocker_spaniel 0.116924 True seat_belt 1.075110e-01 False Australian_terrier 9.984340e-02 True
1582 796759840936919040 https://pbs.twimg.com/media/Cw6o1JQXcAAtP78.jpg 1 American_Staffordshire_terrier 0.463996 True Staffordshire_bullterrier 1.555660e-01 True Weimaraner 1.375870e-01 True
1583 796865951799083009 https://pbs.twimg.com/media/Cw8JWZ2UsAAJOZ6.jpg 1 Cardigan 0.839129 True Boston_bull 8.069850e-02 True Pembroke 3.450500e-02 True
1584 797236660651966464 https://pbs.twimg.com/media/CxBafisWQAAtJ1X.jpg 2 collie 0.767005 True Border_collie 1.008440e-01 True kelpie 4.836810e-02 True
1585 797545162159308800 https://pbs.twimg.com/media/CxFzFAAUAAA5C9z.jpg 1 Pembroke 0.954089 True Cardigan 3.364390e-02 True papillon 9.735660e-03 True
1586 797971864723324932 https://pbs.twimg.com/media/CxL3IWeVEAAAIE2.jpg 1 American_Staffordshire_terrier 0.489845 True Chihuahua 3.057600e-01 True Staffordshire_bullterrier 7.279910e-02 True
1587 798209839306514432 https://pbs.twimg.com/media/CxPPnCYWIAAo_ao.jpg 1 Pekinese 0.524583 True Shih-Tzu 1.029310e-01 True Pomeranian 9.789310e-02 True
1588 798340744599797760 https://pbs.twimg.com/media/CrXhIqBW8AA6Bse.jpg 1 papillon 0.533180 True collie 1.920310e-01 True Border_collie 1.216260e-01 True
1589 798628517273620480 https://pbs.twimg.com/media/CUN4Or5UAAAa5K4.jpg 1 beagle 0.636169 True Labrador_retriever 1.192560e-01 True golden_retriever 8.254920e-02 True
1590 798644042770751489 https://pbs.twimg.com/media/CU3mITUWIAAfyQS.jpg 1 English_springer 0.403698 True Brittany_spaniel 3.476090e-01 True Welsh_springer_spaniel 1.371860e-01 True
1591 798665375516884993 https://pbs.twimg.com/media/CVMOlMiWwAA4Yxl.jpg 1 chow 0.243529 True hamster 2.271500e-01 False Pomeranian 5.605670e-02 True
1592 798673117451325440 https://pbs.twimg.com/media/CV_cnjHWUAADc-c.jpg 1 dough 0.806757 False bakery 2.790660e-02 False French_loaf 1.818890e-02 False
1593 798694562394996736 https://pbs.twimg.com/media/Cbs3DOAXIAAp3Bd.jpg 1 Chihuahua 0.615163 True Pembroke 1.595090e-01 True basenji 8.446570e-02 True
1594 798697898615730177 https://pbs.twimg.com/media/CeRoBaxWEAABi0X.jpg 1 Labrador_retriever 0.868671 True carton 9.509520e-02 False pug 7.651370e-03 True
1595 798925684722855936 https://pbs.twimg.com/media/CxZaqh_WQAA7lY3.jpg 1 West_Highland_white_terrier 0.539463 True cairn 1.848970e-01 True Norfolk_terrier 1.630240e-01 True
1596 798933969379225600 https://pbs.twimg.com/media/CxZiLcLXUAApMVy.jpg 1 Siberian_husky 0.703224 True Eskimo_dog 2.293510e-01 True malamute 4.435080e-02 True
1597 799063482566066176 https://pbs.twimg.com/media/CxbX_n2WIAAHaLS.jpg 2 Norfolk_terrier 0.334436 True Norwich_terrier 2.315730e-01 True Australian_terrier 2.142030e-01 True
1598 799297110730567681 https://pbs.twimg.com/media/CxeseRgUoAM_SQK.jpg 1 malamute 0.985028 True Siberian_husky 5.834420e-03 True Eskimo_dog 5.442810e-03 True
1599 799422933579902976 https://pbs.twimg.com/media/Cxge6AdUQAAvXLB.jpg 1 miniature_pinscher 0.583630 True redbone 2.760950e-01 True toy_terrier 1.855010e-02 True
1600 799757965289017345 https://pbs.twimg.com/media/CxlPnoSUcAEXf1i.jpg 1 Border_collie 0.442534 True collie 2.886840e-01 True Shetland_sheepdog 1.963990e-01 True
1601 799774291445383169 https://pbs.twimg.com/media/CsGnz64WYAEIDHJ.jpg 1 chow 0.316565 True golden_retriever 2.419290e-01 True Pomeranian 1.575240e-01 True
1602 800018252395122689 https://pbs.twimg.com/ext_tw_video_thumb/80001... 1 vacuum 0.289485 False punching_bag 2.432970e-01 False barbell 1.436300e-01 False
1603 800141422401830912 https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg 3 golden_retriever 0.938048 True kuvasz 2.511950e-02 True Labrador_retriever 2.297730e-02 True
1604 800388270626521089 https://pbs.twimg.com/media/CxuM3oZW8AEhO5z.jpg 2 golden_retriever 0.359860 True Pembroke 1.942070e-01 True collie 1.546030e-01 True
1605 800443802682937345 https://pbs.twimg.com/media/CsVO7ljW8AAckRD.jpg 1 mousetrap 0.777468 False black_widow 9.394020e-02 False paddlewheel 1.749190e-02 False
1606 800459316964663297 https://pbs.twimg.com/media/CxvNfrhWQAA2hKM.jpg 1 teddy 0.311928 False ice_bear 1.846570e-01 False Christmas_stocking 1.732290e-01 False
1607 800513324630806528 https://pbs.twimg.com/media/Cxv-nkJUoAAhzMt.jpg 1 Pembroke 0.828904 True Cardigan 1.673730e-01 True Chihuahua 7.659340e-04 True
1608 800751577355128832 https://pbs.twimg.com/media/CxzXOyBW8AEu_Oi.jpg 2 cocker_spaniel 0.771984 True miniature_poodle 7.665280e-02 True toy_poodle 3.961830e-02 True
1609 801115127852503040 https://pbs.twimg.com/media/Cx4h7zHUsAAqaJd.jpg 1 dalmatian 0.823356 True English_setter 9.460190e-02 True bluetick 2.195340e-02 True
1610 801167903437357056 https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg 1 cocker_spaniel 0.740220 True Dandie_Dinmont 6.160450e-02 True English_setter 4.133140e-02 True
1611 801285448605831168 https://pbs.twimg.com/media/Cx683NPUAAAjyU4.jpg 1 minivan 0.789376 False beach_wagon 8.112500e-02 False convertible 6.453380e-02 False
1612 801538201127157760 https://pbs.twimg.com/media/Cx-itFWWIAAZu7l.jpg 1 Pembroke 0.550506 True Cardigan 3.066120e-01 True Shetland_sheepdog 5.423000e-02 True
1613 801958328846974976 https://pbs.twimg.com/media/CyEg2AXUsAA1Qpf.jpg 1 Staffordshire_bullterrier 0.327887 True American_Staffordshire_terrier 2.719160e-01 True Labrador_retriever 2.476190e-01 True
1614 802239329049477120 https://pbs.twimg.com/media/CyIgaTEVEAA-9zS.jpg 2 Eskimo_dog 0.482498 True Siberian_husky 3.357740e-01 True malamute 1.345890e-01 True
1615 802247111496568832 https://pbs.twimg.com/media/Cs_DYr1XEAA54Pu.jpg 1 Chihuahua 0.721188 True toy_terrier 1.129430e-01 True kelpie 5.336450e-02 True
1616 802265048156610565 https://pbs.twimg.com/media/CyI3zXgWEAACQfB.jpg 1 Labrador_retriever 0.897162 True beagle 1.689480e-02 True Rhodesian_ridgeback 1.206060e-02 True
1617 802323869084381190 https://pbs.twimg.com/media/CyJtSmDUAAA2F9x.jpg 4 home_theater 0.765069 False television 2.035780e-01 False entertainment_center 1.864350e-02 False
1618 802572683846291456 https://pbs.twimg.com/media/CyNPmJgXcAECPuB.jpg 1 golden_retriever 0.610171 True Labrador_retriever 1.732520e-01 True cocker_spaniel 1.632570e-01 True
1619 802624713319034886 https://pbs.twimg.com/media/CsrjryzWgAAZY00.jpg 1 cocker_spaniel 0.253442 True golden_retriever 1.628500e-01 True otterhound 1.109210e-01 True
1620 802952499103731712 https://pbs.twimg.com/media/CySpCSHXcAAN-qC.jpg 1 chow 0.944032 True golden_retriever 1.723980e-02 True Pomeranian 1.208480e-02 True
1621 803276597545603072 https://pbs.twimg.com/media/CyXPzXRWgAAvd1j.jpg 1 Pembroke 0.457086 True chow 3.078010e-01 True golden_retriever 4.998820e-02 True
1622 803380650405482500 https://pbs.twimg.com/media/CyYub2kWEAEYdaq.jpg 1 bookcase 0.890601 False entertainment_center 1.928740e-02 False file 9.489540e-03 False
1623 803638050916102144 https://pbs.twimg.com/ext_tw_video_thumb/80363... 1 Labrador_retriever 0.372776 True golden_retriever 3.436660e-01 True Great_Pyrenees 6.724230e-02 True
1624 803692223237865472 https://pbs.twimg.com/media/CZhn-QAWwAASQan.jpg 1 Lakeland_terrier 0.530104 True Irish_terrier 1.973140e-01 True Airedale 8.251460e-02 True
1625 803773340896923648 https://pbs.twimg.com/media/CyeTku-XcAALkBd.jpg 2 miniature_pinscher 0.817066 True redbone 5.970650e-02 True Irish_terrier 3.419520e-02 True
1626 804026241225523202 https://pbs.twimg.com/media/Cyh5mQTW8AQpB6K.jpg 1 web_site 0.492709 False envelope 5.056580e-02 False guillotine 1.529690e-02 False
1627 804413760345620481 https://pbs.twimg.com/media/CuRDF-XWcAIZSer.jpg 1 chow 0.090341 True binoculars 8.349880e-02 False Irish_setter 7.745560e-02 True
1628 804738756058218496 https://pbs.twimg.com/media/CysBn-lWIAAoRx1.jpg 1 Tibetan_mastiff 0.915790 True German_shepherd 6.247970e-02 True Leonberg 8.297490e-03 True
1629 805207613751304193 https://pbs.twimg.com/media/CyysDQlVIAAYgrl.jpg 1 Pembroke 0.244705 True Rhodesian_ridgeback 1.804610e-01 True Cardigan 9.466370e-02 True
1630 805487436403003392 https://pbs.twimg.com/media/Cy2qiTxXcAAtQBH.jpg 3 shield 0.587830 False barrel 9.017990e-02 False sundial 6.919860e-02 False
1631 805520635690676224 https://pbs.twimg.com/media/Cy3IvdZXgAUoEaj.jpg 1 malinois 0.643147 True German_shepherd 1.866420e-01 True Border_terrier 1.093450e-01 True
1632 805826884734976000 https://pbs.twimg.com/ext_tw_video_thumb/80582... 1 Siberian_husky 0.248926 True American_Staffordshire_terrier 9.831330e-02 True Eskimo_dog 8.018850e-02 True
1633 805932879469572096 https://pbs.twimg.com/media/Cy8_qt0UUAAHuuN.jpg 1 Norwegian_elkhound 0.657967 True keeshond 3.191360e-01 True Leonberg 7.946740e-03 True
1634 805958939288408065 https://pbs.twimg.com/media/CtzKC7zXEAALfSo.jpg 1 Irish_setter 0.574557 True golden_retriever 3.392510e-01 True seat_belt 4.610820e-02 False
1635 806219024703037440 https://pbs.twimg.com/media/CzBD7MWVIAA5ptx.jpg 1 chow 0.835102 True Pomeranian 4.078290e-02 True Eskimo_dog 2.127450e-02 True
1636 806242860592926720 https://pbs.twimg.com/media/Ct72q9jWcAAhlnw.jpg 2 Cardigan 0.593858 True Shetland_sheepdog 1.306110e-01 True Pembroke 1.008420e-01 True
1637 806542213899489280 https://pbs.twimg.com/media/CzFp3FNW8AAfvV8.jpg 1 vizsla 0.938617 True Brittany_spaniel 3.673890e-02 True Chesapeake_Bay_retriever 3.971490e-03 True
1638 806629075125202948 https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg 2 Arabian_camel 0.366248 False house_finch 2.098520e-01 False cocker_spaniel 4.640320e-02 True
1639 807010152071229440 https://pbs.twimg.com/media/CzMTcZoXUAEKqEt.jpg 1 golden_retriever 0.610807 True Irish_setter 2.136420e-01 True Welsh_springer_spaniel 3.188660e-02 True
1640 807059379405148160 https://pbs.twimg.com/media/Ct2qO5PXEAE6eB0.jpg 1 seat_belt 0.474292 False golden_retriever 1.713930e-01 True Labrador_retriever 1.105920e-01 True
1641 807106840509214720 https://pbs.twimg.com/ext_tw_video_thumb/80710... 1 Chihuahua 0.505370 True Pomeranian 1.203580e-01 True toy_terrier 7.700810e-02 True
1642 807621403335917568 https://pbs.twimg.com/media/CzU_YVGUUAA3Xsd.jpg 3 golden_retriever 0.873233 True cocker_spaniel 3.369330e-02 True chow 2.040840e-02 True
1643 808001312164028416 https://pbs.twimg.com/media/CzaY5UdUoAAC91S.jpg 1 Labrador_retriever 0.730959 True Staffordshire_bullterrier 1.307260e-01 True American_Staffordshire_terrier 2.885260e-02 True
1644 808106460588765185 https://pbs.twimg.com/media/Czb4iFRXgAIUMiN.jpg 1 golden_retriever 0.426183 True Labrador_retriever 2.574470e-01 True Great_Pyrenees 1.264820e-01 True
1645 808134635716833280 https://pbs.twimg.com/media/Cx5R8wPVEAALa9r.jpg 1 cocker_spaniel 0.740220 True Dandie_Dinmont 6.160450e-02 True English_setter 4.133140e-02 True
1646 808501579447930884 https://pbs.twimg.com/media/Czhf4XtVQAAIqpd.jpg 2 Airedale 0.454239 True cocker_spaniel 2.193230e-01 True Irish_terrier 9.319300e-02 True
1647 808733504066486276 https://pbs.twimg.com/media/Czky0v9VIAEXRkd.jpg 1 seat_belt 0.779137 False toy_poodle 3.692710e-02 True golden_retriever 1.697250e-02 True
1648 808838249661788160 https://pbs.twimg.com/media/CzmSFlKUAAAQOjP.jpg 1 Rottweiler 0.369530 True miniature_pinscher 1.948670e-01 True kelpie 1.601040e-01 True
1649 809084759137812480 https://pbs.twimg.com/media/CzpyM41UoAE1b2w.jpg 1 vizsla 0.911412 True bloodhound 1.713390e-02 True Labrador_retriever 1.176100e-02 True
1650 809220051211603969 https://pbs.twimg.com/media/CzrtWDbWEAAmIhy.jpg 1 Pomeranian 0.819511 True Samoyed 1.412410e-01 True Pembroke 1.345520e-02 True
1651 809448704142938112 https://pbs.twimg.com/media/Czu9RiwVEAA_Okk.jpg 1 Greater_Swiss_Mountain_dog 0.375415 True Cardigan 1.343170e-01 True English_springer 7.369710e-02 True
1652 809808892968534016 https://pbs.twimg.com/media/CwS4aqZXUAAe3IO.jpg 1 Labrador_retriever 0.861651 True golden_retriever 4.446180e-02 True Staffordshire_bullterrier 1.649670e-02 True
1653 809920764300447744 https://pbs.twimg.com/media/Cz1qo05XUAQ4qXp.jpg 1 Norwich_terrier 0.397163 True toy_poodle 2.745400e-01 True miniature_poodle 1.346670e-01 True
1654 810254108431155201 https://pbs.twimg.com/media/Cz6Z0DgWIAAfdvp.jpg 1 Staffordshire_bullterrier 0.292556 True American_Staffordshire_terrier 2.612330e-01 True Border_terrier 6.237540e-02 True
1655 810284430598270976 https://pbs.twimg.com/media/Cz61ZD4W8AAcJEU.jpg 1 malamute 0.620768 True Eskimo_dog 1.583950e-01 True Tibetan_mastiff 2.896170e-02 True
1656 810657578271330305 https://pbs.twimg.com/media/C0AIwgVXAAAc1Ig.jpg 1 malamute 0.753521 True Siberian_husky 1.661510e-01 True Eskimo_dog 6.981080e-02 True
1657 810896069567610880 https://pbs.twimg.com/media/C0DhpcrUAAAnx88.jpg 1 flat-coated_retriever 0.820804 True Labrador_retriever 8.231820e-02 True curly-coated_retriever 6.746050e-02 True
1658 810984652412424192 https://pbs.twimg.com/media/C0EyPZbXAAAceSc.jpg 1 golden_retriever 0.871342 True Tibetan_mastiff 3.670770e-02 True Labrador_retriever 2.582320e-02 True
1659 811386762094317568 https://pbs.twimg.com/media/C0Kf9PtWQAEW4sE.jpg 1 Pembroke 0.804177 True Cardigan 1.898900e-01 True beagle 1.964750e-03 True
1660 811627233043480576 https://pbs.twimg.com/media/C0N6opSXAAAkCtN.jpg 1 beagle 0.396280 True Pembroke 4.956190e-02 True wire-haired_fox_terrier 4.634920e-02 True
1661 811744202451197953 https://pbs.twimg.com/media/C0PlCQjXAAA9TIh.jpg 1 Pekinese 0.386082 True Labrador_retriever 2.028620e-01 True golden_retriever 1.704870e-01 True
1662 811985624773361665 https://pbs.twimg.com/media/C0TAnZIUAAAADKs.jpg 1 Staffordshire_bullterrier 0.610573 True French_bulldog 1.599350e-01 True doormat 5.867210e-02 False
1663 812372279581671427 https://pbs.twimg.com/media/C0YgO3DW8AAz98O.jpg 2 golden_retriever 0.784873 True cocker_spaniel 8.778810e-02 True Labrador_retriever 8.327470e-02 True
1664 812466873996607488 https://pbs.twimg.com/media/C0Z2T_GWgAAxbL9.jpg 1 bath_towel 0.099804 False pillow 9.231810e-02 False Great_Dane 7.820550e-02 True
1665 812503143955202048 https://pbs.twimg.com/media/C0aXTLqXEAADxBi.jpg 2 loupe 0.546856 False web_site 3.452980e-01 False bubble 1.052790e-02 False
1666 812709060537683968 https://pbs.twimg.com/media/C0dSk98WEAALyya.jpg 1 Irish_setter 0.326873 True golden_retriever 1.826100e-01 True Leonberg 1.569120e-01 True
1667 812781120811126785 https://pbs.twimg.com/media/C0eUHfWUAAANEYr.jpg 1 bull_mastiff 0.989316 True boxer 7.042960e-03 True French_bulldog 1.739610e-03 True
1668 813051746834595840 https://pbs.twimg.com/media/C0iKPZIXUAAbDYV.jpg 1 golden_retriever 0.914804 True Labrador_retriever 8.355000e-02 True kuvasz 4.532240e-04 True
1669 813066809284972545 https://pbs.twimg.com/media/C0iX8OOVEAEIpMC.jpg 1 toy_terrier 0.776400 True Pembroke 1.150340e-01 True basenji 4.887300e-02 True
1670 813081950185472002 https://pbs.twimg.com/media/C0ilsa1XUAEHK_k.jpg 2 Doberman 0.909951 True kelpie 4.264940e-02 True miniature_pinscher 2.300410e-02 True
1671 813096984823349248 https://pbs.twimg.com/media/C0izZULWgAAKD-F.jpg 1 Great_Dane 0.128056 True Boston_bull 1.170030e-01 True kelpie 8.696430e-02 True
1672 813112105746448384 https://pbs.twimg.com/media/C0jBJZVWQAA2_-X.jpg 1 dingo 0.287369 False Pembroke 1.406820e-01 True basenji 9.081890e-02 True
1673 813127251579564032 https://pbs.twimg.com/media/C0jO6aBWEAAM28r.jpg 1 Norwegian_elkhound 0.432416 True whippet 3.742230e-01 True Siberian_husky 3.246260e-02 True
1674 813142292504645637 https://pbs.twimg.com/media/C0jcmOKVQAAd0VR.jpg 3 beagle 0.848735 True Ibizan_hound 4.460250e-02 True Italian_greyhound 1.861080e-02 True
1675 813157409116065792 https://pbs.twimg.com/media/C0jqVVOXUAAGJ0G.jpg 2 Siamese_cat 0.843911 False Pembroke 7.056710e-02 True Cardigan 4.191600e-02 True
1676 813172488309972993 https://pbs.twimg.com/media/C0j4EESUsAABtMq.jpg 1 doormat 0.954844 False golden_retriever 2.619310e-02 True cocker_spaniel 4.385980e-03 True
1677 813187593374461952 https://pbs.twimg.com/media/C0kFzOQUoAAt6yb.jpg 1 golden_retriever 0.888181 True Labrador_retriever 4.231190e-02 True Saluki 9.701730e-03 True
1678 813202720496779264 https://pbs.twimg.com/media/C0kTjqIXgAAqpRi.jpg 1 cocker_spaniel 0.701852 True golden_retriever 1.203450e-01 True Labrador_retriever 3.632020e-02 True
1679 813217897535406080 https://pbs.twimg.com/media/C0khWkVXEAI389B.jpg 1 Samoyed 0.905972 True Pomeranian 4.803830e-02 True West_Highland_white_terrier 3.566710e-02 True
1680 813800681631023104 https://pbs.twimg.com/media/C0szZh_XUAAm9je.jpg 1 malamute 0.501159 True Siberian_husky 2.287920e-01 True Eskimo_dog 2.003880e-01 True
1681 813812741911748608 https://pbs.twimg.com/media/C0s-XtzWgAAp1W-.jpg 1 French_bulldog 0.709146 True Boston_bull 2.476210e-01 True boxer 1.885510e-02 True
1682 813910438903693312 https://pbs.twimg.com/media/C0uXObSXUAAIzmV.jpg 1 Siberian_husky 0.699355 True Eskimo_dog 2.564330e-01 True Norwegian_elkhound 1.318880e-02 True
1683 813944609378369540 https://pbs.twimg.com/media/Cveg1-NXgAASaaT.jpg 1 Labrador_retriever 0.427742 True Great_Dane 1.905030e-01 True curly-coated_retriever 1.464270e-01 True
1684 814153002265309185 https://pbs.twimg.com/media/C0xz04SVIAAeyDb.jpg 1 golden_retriever 0.490068 True Labrador_retriever 2.919560e-01 True chow 7.247470e-02 True
1685 814530161257443328 https://pbs.twimg.com/media/C03K2-VWIAAK1iV.jpg 1 miniature_poodle 0.626913 True toy_poodle 2.655820e-01 True soft-coated_wheaten_terrier 4.161420e-02 True
1686 814638523311648768 https://pbs.twimg.com/media/C04taUjWIAA6Mo4.jpg 2 golden_retriever 0.650814 True kuvasz 5.328100e-02 True cocker_spaniel 3.543960e-02 True
1687 814986499976527872 https://pbs.twimg.com/media/C09p5dJWIAE5qKL.jpg 1 dalmatian 0.999828 True boxer 6.780610e-05 True American_Staffordshire_terrier 3.424360e-05 True
1688 815390420867969024 https://pbs.twimg.com/media/C1DZQiTXgAUqgRI.jpg 1 restaurant 0.279846 False toyshop 9.142940e-02 False paper_towel 4.614740e-02 False
1689 815639385530101762 https://pbs.twimg.com/media/C1G7sXyWIAA10eH.jpg 1 German_shepherd 0.817953 True Norwegian_elkhound 1.400070e-01 True malinois 2.482090e-02 True
1690 815736392542261248 https://pbs.twimg.com/media/C1IT6rVXUAIvwYT.jpg 3 Border_collie 0.548907 True Cardigan 1.785230e-01 True collie 1.463510e-01 True
1691 815966073409433600 https://pbs.twimg.com/ext_tw_video_thumb/81596... 1 Tibetan_mastiff 0.506312 True Tibetan_terrier 2.956900e-01 True otterhound 3.625070e-02 True
1692 815990720817401858 https://pbs.twimg.com/media/C1L7OVVWQAIQ6Tt.jpg 1 Chihuahua 0.428756 True miniature_pinscher 1.039120e-01 True Staffordshire_bullterrier 8.895870e-02 True
1693 816014286006976512 https://pbs.twimg.com/media/CiibOMzUYAA9Mxz.jpg 1 English_setter 0.677408 True Border_collie 5.272400e-02 True cocker_spaniel 4.857190e-02 True
1694 816091915477250048 https://pbs.twimg.com/media/C1NXQ6NXUAEAxIQ.jpg 3 Pomeranian 0.967345 True Samoyed 7.397480e-03 True papillon 6.016500e-03 True
1695 816336735214911488 https://pbs.twimg.com/media/C1Q17WdWEAAjKFO.jpg 1 Labrador_retriever 0.919330 True kuvasz 4.947950e-02 True golden_retriever 1.193420e-02 True
1696 816450570814898180 https://pbs.twimg.com/media/C1SddosXUAQcVR1.jpg 1 web_site 0.352857 False envelope 6.010720e-02 False nail 3.129090e-02 False
1697 816697700272001025 https://pbs.twimg.com/media/C1V-K63UAAEUHqw.jpg 1 Chihuahua 0.756992 True Pomeranian 5.284950e-02 True Maltese_dog 4.760780e-02 True
1698 816816676327063552 https://pbs.twimg.com/media/C1XqbhXXUAElpfI.jpg 1 malamute 0.668164 True Pembroke 1.050330e-01 True Siberian_husky 7.787500e-02 True
1699 816829038950027264 https://pbs.twimg.com/media/CvoBPWRWgAA4het.jpg 1 dishwasher 0.700466 False golden_retriever 2.457730e-01 True chow 3.901170e-02 True
1700 817056546584727552 https://pbs.twimg.com/media/C1bEl4zVIAASj7_.jpg 1 kelpie 0.864415 True French_bulldog 9.745560e-02 True German_shepherd 8.525870e-03 True
1701 817120970343411712 https://pbs.twimg.com/media/C1b_LSYUsAAJ494.jpg 1 Saluki 0.568809 True Afghan_hound 2.293520e-01 True golden_retriever 1.571300e-01 True
1702 817171292965273600 https://pbs.twimg.com/media/C1cs8uAWgAEwbXc.jpg 1 golden_retriever 0.295483 True Irish_setter 1.444310e-01 True Chesapeake_Bay_retriever 7.787900e-02 True
1703 817181837579653120 https://pbs.twimg.com/ext_tw_video_thumb/81596... 1 Tibetan_mastiff 0.506312 True Tibetan_terrier 2.956900e-01 True otterhound 3.625070e-02 True
1704 817415592588222464 https://pbs.twimg.com/media/C1gLJVpWgAApI3r.jpg 1 Doberman 0.806163 True black-and-tan_coonhound 9.738590e-02 True miniature_pinscher 8.599280e-02 True
1705 817423860136083457 https://pbs.twimg.com/ext_tw_video_thumb/81742... 1 ice_bear 0.336200 False Samoyed 2.013580e-01 True Eskimo_dog 1.867890e-01 True
1706 817536400337801217 https://pbs.twimg.com/media/C1h4_MEXUAARxQF.jpg 2 pug 0.971358 True French_bulldog 2.851850e-02 True Boston_bull 8.596980e-05 True
1707 817777686764523521 https://pbs.twimg.com/ext_tw_video_thumb/81777... 1 curly-coated_retriever 0.733256 True flat-coated_retriever 2.141450e-01 True Irish_water_spaniel 2.976900e-02 True
1708 817827839487737858 https://pbs.twimg.com/ext_tw_video_thumb/81782... 1 cocker_spaniel 0.387608 True golden_retriever 2.648440e-01 True Pekinese 1.221230e-01 True
1709 818145370475810820 https://pbs.twimg.com/media/C1qi26rW8AMaj9K.jpg 1 golden_retriever 0.621931 True Labrador_retriever 3.649970e-01 True redbone 3.971480e-03 True
1710 818259473185828864 https://pbs.twimg.com/media/C1sKo_QUkAALtkw.jpg 1 miniature_schnauzer 0.367368 True toy_poodle 1.124790e-01 True standard_schnauzer 9.543400e-02 True
1711 818536468981415936 https://pbs.twimg.com/media/C1wGkYoVQAAuC_O.jpg 1 swing 0.999403 False Welsh_springer_spaniel 6.229490e-05 True bow 3.046190e-05 False
1712 818588835076603904 https://pbs.twimg.com/media/Crwxb5yWgAAX5P_.jpg 1 Norwegian_elkhound 0.372202 True Chesapeake_Bay_retriever 1.371870e-01 True malamute 7.143620e-02 True
1713 818614493328580609 https://pbs.twimg.com/media/C1xNgraVIAA3EVb.jpg 4 Chihuahua 0.450722 True Border_terrier 2.041770e-01 True beagle 9.277400e-02 True
1714 818627210458333184 https://pbs.twimg.com/media/C1xZGkzWIAA8vh4.jpg 1 Labrador_retriever 0.384188 True beagle 2.559170e-01 True grocery_store 7.979950e-02 False
1715 819004803107983360 https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg 1 standard_poodle 0.351308 True toy_poodle 2.719290e-01 True Tibetan_terrier 9.475920e-02 True
1716 819006400881917954 https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg 4 prison 0.907083 False palace 2.008910e-02 False umbrella 7.849540e-03 False
1717 819015331746349057 https://pbs.twimg.com/media/C12x-JTVIAAzdfl.jpg 4 prison 0.907083 False palace 2.008910e-02 False umbrella 7.849540e-03 False
1718 819015337530290176 https://pbs.twimg.com/media/C12whDoVEAALRxa.jpg 1 standard_poodle 0.351308 True toy_poodle 2.719290e-01 True Tibetan_terrier 9.475920e-02 True
1719 819227688460238848 https://pbs.twimg.com/media/C157Oq3WQAEOyHm.jpg 1 Border_terrier 0.482452 True German_shepherd 1.810820e-01 True Norwegian_elkhound 6.525660e-02 True
1720 819347104292290561 https://pbs.twimg.com/media/C17n1nrWQAIErU3.jpg 3 Rottweiler 0.909106 True black-and-tan_coonhound 4.411980e-02 True Doberman 3.183490e-02 True
1721 819588359383371776 https://pbs.twimg.com/media/C1_DQn3UoAIoJy7.jpg 1 Cardigan 0.547935 True basenji 1.164420e-01 True Shetland_sheepdog 1.016810e-01 True
1722 819711362133872643 https://pbs.twimg.com/media/C2AzHjQWQAApuhf.jpg 2 acorn_squash 0.848704 False toilet_seat 4.434840e-02 False toy_poodle 2.200940e-02 True
1723 819924195358416896 https://pbs.twimg.com/ext_tw_video_thumb/81992... 1 bathtub 0.100896 False shower_curtain 9.186640e-02 False tub 4.917630e-02 False
1724 819952236453363712 https://pbs.twimg.com/media/C2EONHNWQAUWxkP.jpg 1 American_Staffordshire_terrier 0.925505 True Staffordshire_bullterrier 3.622150e-02 True Italian_greyhound 2.041190e-02 True
1725 820078625395449857 https://pbs.twimg.com/media/C2GBJADWIAQvcNb.jpg 3 school_bus 0.999833 False cab 1.596210e-04 False crane 1.799800e-06 False
1726 820314633777061888 https://pbs.twimg.com/media/C2JXyARUAAE4gbL.jpg 2 Gordon_setter 0.940724 True black-and-tan_coonhound 4.204120e-02 True Rottweiler 9.417430e-03 True
1727 820446719150292993 https://pbs.twimg.com/media/CxqsX-8XUAAEvjD.jpg 3 golden_retriever 0.938048 True kuvasz 2.511950e-02 True Labrador_retriever 2.297730e-02 True
1728 820690176645140481 https://pbs.twimg.com/media/C2OtWr0VQAEnS9r.jpg 2 West_Highland_white_terrier 0.872064 True kuvasz 5.952590e-02 True Samoyed 3.739960e-02 True
1729 820749716845686786 https://pbs.twimg.com/media/C2PjgjQXcAAc4Uu.jpg 2 golden_retriever 0.838012 True Pekinese 5.673310e-02 True Labrador_retriever 2.394360e-02 True
1730 821044531881721856 https://pbs.twimg.com/media/C2Tvo20XcAAhNL9.jpg 1 Old_English_sheepdog 0.148020 True Airedale 1.335340e-01 True Tibetan_mastiff 1.209030e-01 True
1731 821107785811234820 https://pbs.twimg.com/media/C2UpLA-UcAEK_Fz.jpg 1 Pomeranian 0.856590 True papillon 3.853650e-02 True Yorkshire_terrier 3.314580e-02 True
1732 821149554670182400 https://pbs.twimg.com/ext_tw_video_thumb/82114... 1 German_shepherd 0.515933 True malinois 2.036510e-01 True Irish_setter 9.105510e-02 True
1733 821407182352777218 https://pbs.twimg.com/ext_tw_video_thumb/82140... 1 Irish_setter 0.505496 True vizsla 1.687470e-01 True Chesapeake_Bay_retriever 1.113110e-01 True
1734 821522889702862852 https://pbs.twimg.com/media/C2aitIUXAAAG-Wi.jpg 1 Doberman 0.763539 True black-and-tan_coonhound 1.366020e-01 True miniature_pinscher 8.765390e-02 True
1735 821765923262631936 https://pbs.twimg.com/media/C2d_vnHWEAE9phX.jpg 1 golden_retriever 0.980071 True Labrador_retriever 8.757510e-03 True Saluki 1.805950e-03 True
1736 821813639212650496 https://pbs.twimg.com/media/CtVAvX-WIAAcGTf.jpg 1 Saint_Bernard 0.995143 True Cardigan 3.043590e-03 True English_springer 1.049550e-03 True
1737 821886076407029760 https://pbs.twimg.com/media/C2ftAxnWIAEUdAR.jpg 1 golden_retriever 0.266238 True cocker_spaniel 2.233250e-01 True Irish_setter 1.516310e-01 True
1738 822244816520155136 https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg 1 Samoyed 0.585441 True Pomeranian 1.936540e-01 True Arctic_fox 7.164760e-02 False
1739 822462944365645825 https://pbs.twimg.com/media/C2n5rUUXEAIXAtv.jpg 3 Pomeranian 0.960199 True Samoyed 2.305630e-02 True Maltese_dog 8.944880e-03 True
1740 822489057087389700 https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg 1 Samoyed 0.416769 True malamute 2.527060e-01 True kuvasz 1.570280e-01 True
1741 822610361945911296 https://pbs.twimg.com/media/C2p_wQyXEAELtvS.jpg 1 cocker_spaniel 0.664487 True Norfolk_terrier 7.508900e-02 True Norwich_terrier 5.964390e-02 True
1742 822647212903690241 https://pbs.twimg.com/media/C2oRbOuWEAAbVSl.jpg 1 Samoyed 0.416769 True malamute 2.527060e-01 True kuvasz 1.570280e-01 True
1743 822859134160621569 https://pbs.twimg.com/media/C2tiAzGXgAIFdqi.jpg 1 malinois 0.332897 True Chihuahua 1.041160e-01 True Staffordshire_bullterrier 4.774500e-02 True
1744 822872901745569793 https://pbs.twimg.com/media/C2tugXLXgAArJO4.jpg 1 Lakeland_terrier 0.196015 True Labrador_retriever 1.603290e-01 True Irish_terrier 6.912620e-02 True
1745 822975315408461824 https://pbs.twimg.com/media/C2vLrpvWIAA3LM3.jpg 1 bathtub 0.331098 False tub 2.488600e-01 False Pembroke 2.331620e-01 True
1746 823269594223824897 https://pbs.twimg.com/media/C2kzTGxWEAEOpPL.jpg 1 Samoyed 0.585441 True Pomeranian 1.936540e-01 True Arctic_fox 7.164760e-02 False
1747 823322678127919110 https://pbs.twimg.com/media/C20HmaKWgAQ6-6X.jpg 2 cowboy_boot 0.990253 False Chihuahua 1.836350e-03 True papillon 1.273900e-03 True
1748 823581115634085888 https://pbs.twimg.com/media/C23ypm6VQAAO31l.jpg 1 dingo 0.280949 False German_shepherd 1.940440e-01 True Pembroke 1.200510e-01 True
1749 823699002998870016 https://pbs.twimg.com/media/C25d3nkXEAAFBUN.jpg 1 cairn 0.203999 True snorkel 1.718930e-01 False Norfolk_terrier 1.075430e-01 True
1750 823939628516474880 https://pbs.twimg.com/media/C284uD8WgAEmMVn.jpg 1 schipperke 0.234076 True curly-coated_retriever 1.930930e-01 True Labrador_retriever 9.519660e-02 True
1751 824297048279236611 https://pbs.twimg.com/media/C3B9ypNWEAM1bVs.jpg 2 teddy 0.588230 False jigsaw_puzzle 2.890960e-02 False doormat 2.225070e-02 False
1752 824325613288833024 https://pbs.twimg.com/media/C3CXxaoWQAAiLuC.jpg 1 Pembroke 0.990793 True Cardigan 8.919390e-03 True basenji 2.622640e-04 True
1753 824663926340194305 https://pbs.twimg.com/media/C3HLd0HXUAAUI2b.jpg 1 English_setter 0.526488 True golden_retriever 4.028150e-01 True Irish_setter 3.441780e-02 True
1754 824775126675836928 https://pbs.twimg.com/media/C3Iwlr0WYAARVh4.jpg 1 Border_terrier 0.610499 True malinois 9.029120e-02 True Airedale 6.862470e-02 True
1755 824796380199809024 https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg 2 gas_pump 0.676439 False harvester 4.999530e-02 False swing 4.465960e-02 False
1756 825026590719483904 https://pbs.twimg.com/media/C3MVTeHWcAAGNfx.jpg 2 Eskimo_dog 0.524454 True Siberian_husky 4.676780e-01 True malamute 4.975840e-03 True
1757 825147591692263424 https://pbs.twimg.com/media/C3ODWpfXAAAP1fb.jpg 1 Pekinese 0.354823 True Pomeranian 2.453900e-01 True toy_poodle 1.365450e-01 True
1758 825535076884762624 https://pbs.twimg.com/media/C3TjvitXAAAI-QH.jpg 1 Rottweiler 0.681495 True Tibetan_mastiff 1.479400e-01 True black-and-tan_coonhound 2.452520e-02 True
1759 825829644528148480 https://pbs.twimg.com/media/C3XvqILXUAU2nnT.jpg 2 Great_Pyrenees 0.853407 True golden_retriever 5.353130e-02 True English_setter 4.582990e-02 True
1760 825876512159186944 https://pbs.twimg.com/media/C3YaSnQWAAILgz0.jpg 1 shopping_cart 0.995941 False shopping_basket 4.056970e-03 False mousetrap 8.832830e-07 False
1761 826115272272650244 https://pbs.twimg.com/media/C3bzVILWcAUjS5i.jpg 1 tennis_ball 0.997071 False golden_retriever 2.330850e-03 True kuvasz 2.834720e-04 True
1762 826204788643753985 https://pbs.twimg.com/media/C3dEza1WcAAhlNU.jpg 2 Labrador_retriever 0.782058 True golden_retriever 1.565810e-01 True soft-coated_wheaten_terrier 7.275120e-03 True
1763 826240494070030336 https://pbs.twimg.com/media/C3dlVMbXAAUd-Gh.jpg 1 French_bulldog 0.903048 True pug 9.624210e-02 True Boston_bull 2.343640e-04 True
1764 826476773533745153 https://pbs.twimg.com/media/C3g8M0lWIAEcFgn.jpg 1 German_shepherd 0.741860 True Tibetan_mastiff 1.228120e-01 True kelpie 1.004600e-01 True
1765 826598365270007810 https://pbs.twimg.com/media/C3iq0EEXUAAdBYC.jpg 1 French_bulldog 0.628119 True Siamese_cat 1.173970e-01 False cougar 8.276490e-02 False
1766 826848821049180160 https://pbs.twimg.com/media/C3mOnZ_XUAAjr2V.jpg 4 Great_Pyrenees 0.858764 True golden_retriever 2.352570e-02 True Pekinese 1.710390e-02 True
1767 826958653328592898 https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg 1 golden_retriever 0.617389 True Labrador_retriever 3.370530e-01 True tennis_ball 8.554420e-03 False
1768 827199976799354881 https://pbs.twimg.com/media/C3rN-lcWEAA9CmR.jpg 4 Great_Dane 0.869681 True American_Staffordshire_terrier 2.665820e-02 True boxer 1.986610e-02 True
1769 827324948884643840 https://pbs.twimg.com/media/C3s_pYrXAAA1eqZ.jpg 1 golden_retriever 0.352486 True toy_poodle 1.788840e-01 True Labrador_retriever 8.416440e-02 True
1770 827600520311402496 https://pbs.twimg.com/media/C3w6RYbWQAAEQ25.jpg 1 Pembroke 0.325638 True golden_retriever 3.172350e-01 True Labrador_retriever 1.160870e-01 True
1771 827653905312006145 https://pbs.twimg.com/media/C3xq1ZeWEAEuzw3.jpg 1 collie 0.285555 True Border_collie 2.173060e-01 True Saint_Bernard 1.432450e-01 True
1772 827933404142436356 https://pbs.twimg.com/media/C31pCN4UcAAOLNH.jpg 2 German_shepherd 0.806115 True Tibetan_mastiff 1.048310e-01 True kelpie 3.814820e-02 True
1773 828011680017821696 https://pbs.twimg.com/media/C32wOLcWYAAjNqS.jpg 1 American_Staffordshire_terrier 0.936662 True Staffordshire_bullterrier 3.299910e-02 True bull_mastiff 1.718340e-02 True
1774 828046555563323392 https://pbs.twimg.com/media/C33P8PrUcAMiQQs.jpg 3 patio 0.272972 False window_screen 1.312950e-01 False boathouse 4.639250e-02 False
1775 828372645993398273 https://pbs.twimg.com/media/C374hb0WQAAIbQ-.jpg 1 malamute 0.663047 True Eskimo_dog 2.077790e-01 True Tibetan_mastiff 4.094880e-02 True
1776 828376505180889089 https://pbs.twimg.com/media/C378BwxWMAA6CNK.jpg 1 American_Staffordshire_terrier 0.523086 True Staffordshire_bullterrier 1.861680e-01 True Chihuahua 4.208940e-02 True
1777 828381636999917570 https://pbs.twimg.com/media/C38Asz1WEAAvzj3.jpg 1 Bedlington_terrier 0.392535 True Labrador_retriever 8.902170e-02 True clumber 8.179980e-02 True
1778 828408677031882754 https://pbs.twimg.com/media/C38ZSzlWIAEpQzs.jpg 1 Weimaraner 0.133033 True Chesapeake_Bay_retriever 9.222700e-02 True American_Staffordshire_terrier 6.509450e-02 True
1779 828409743546925057 https://pbs.twimg.com/media/C38aQYgXAAMY2Wh.jpg 1 teddy 0.908457 False toy_poodle 1.803980e-02 True standard_poodle 1.266710e-02 True
1780 828650029636317184 https://pbs.twimg.com/media/C3_0yhCWEAETXj2.jpg 1 golden_retriever 0.649209 True Chesapeake_Bay_retriever 1.985600e-01 True vizsla 5.619990e-02 True
1781 828708714936930305 https://pbs.twimg.com/media/C4AqLSgVYAEg8nt.jpg 1 hippopotamus 0.942911 False Mexican_hairless 8.388370e-03 True ice_lolly 6.206470e-03 False
1782 828770345708580865 https://pbs.twimg.com/media/C4BiOXOXAAAf6IS.jpg 1 seat_belt 0.765979 False Chesapeake_Bay_retriever 3.389860e-02 True polecat 2.725160e-02 False
1783 829011960981237760 https://pbs.twimg.com/media/C4E99ygWcAAQpPs.jpg 2 boxer 0.312221 True dalmatian 2.440400e-01 True conch 1.302730e-01 False
1784 829141528400556032 https://pbs.twimg.com/media/C4GzztSWAAA_qi4.jpg 2 golden_retriever 0.573140 True cocker_spaniel 1.111590e-01 True gibbon 9.412690e-02 False
1785 829374341691346946 https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 1 Staffordshire_bullterrier 0.757547 True American_Staffordshire_terrier 1.499500e-01 True Chesapeake_Bay_retriever 4.752270e-02 True
1786 829449946868879360 https://pbs.twimg.com/media/C4LMUf8WYAkWz4I.jpg 1 Labrador_retriever 0.315163 True golden_retriever 1.532100e-01 True Pekinese 1.327910e-01 True
1787 829501995190984704 https://pbs.twimg.com/media/C4L7p19W8AA3Fs_.jpg 1 French_bulldog 0.950851 True Pekinese 1.519960e-02 True pug 1.109360e-02 True
1788 829861396166877184 https://pbs.twimg.com/media/C4RCiIHWYAAwgJM.jpg 1 Border_terrier 0.394486 True Staffordshire_bullterrier 3.765740e-01 True American_Staffordshire_terrier 3.129160e-02 True
1789 829878982036299777 https://pbs.twimg.com/media/C3nygbBWQAAjwcW.jpg 1 golden_retriever 0.617389 True Labrador_retriever 3.370530e-01 True tennis_ball 8.554420e-03 False
1790 830097400375152640 https://pbs.twimg.com/media/C4UZLZLWYAA0dcs.jpg 4 toy_poodle 0.442713 True Pomeranian 1.420730e-01 True Pekinese 1.257450e-01 True
1791 830583320585068544 https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 1 Labrador_retriever 0.908703 True seat_belt 5.709090e-02 False pug 1.193350e-02 True
1792 830956169170665475 https://pbs.twimg.com/ext_tw_video_thumb/83095... 1 kuvasz 0.451516 True golden_retriever 3.171960e-01 True English_setter 1.327590e-01 True
1793 831262627380748289 https://pbs.twimg.com/media/C4k88lGVMAEKNzb.jpg 1 cocker_spaniel 0.263323 True Brittany_spaniel 2.005500e-01 True doormat 1.934140e-01 False
1794 831309418084069378 https://pbs.twimg.com/media/C4lngK5VUAEVrNO.jpg 1 Doberman 0.369389 True kelpie 1.324490e-01 True Labrador_retriever 7.472730e-02 True
1795 831315979191906304 https://pbs.twimg.com/media/C4lst0bXAAE6MP8.jpg 4 briard 0.982755 True soft-coated_wheaten_terrier 9.084350e-03 True Bouvier_des_Flandres 4.692800e-03 True
1796 831322785565769729 https://pbs.twimg.com/media/C4lzqQ4UEAApzU0.jpg 1 Old_English_sheepdog 0.999715 True Tibetan_terrier 4.629670e-05 True guinea_pig 4.118430e-05 False
1797 831552930092285952 https://pbs.twimg.com/media/C4pE-I0WQAABveu.jpg 1 Chihuahua 0.257415 True Pembroke 1.614420e-01 True French_bulldog 9.214290e-02 True
1798 831650051525054464 https://pbs.twimg.com/media/C4qdThOWAAI3WX3.jpg 1 Eskimo_dog 0.530416 True Siberian_husky 1.803350e-01 True Norwegian_elkhound 1.043140e-01 True
1799 831670449226514432 https://pbs.twimg.com/media/C4qv3JUW8AADirb.jpg 1 Pembroke 0.624802 True Cardigan 3.628610e-01 True Appenzeller 3.926210e-03 True
1800 831911600680497154 https://pbs.twimg.com/media/C4uLLGuUoAAkIHm.jpg 4 bloodhound 0.777562 True Great_Dane 4.741760e-02 True Leonberg 1.794310e-02 True
1801 831939777352105988 https://pbs.twimg.com/media/C4uk0EWWQAAaZm1.jpg 1 Pomeranian 0.153862 True marmot 9.123390e-02 False grey_fox 9.064410e-02 False
1802 832032802820481025 https://pbs.twimg.com/media/C4v5a4UWcAIRygc.jpg 1 whippet 0.601712 True Ibizan_hound 1.526620e-01 True Italian_greyhound 1.350550e-01 True
1803 832040443403784192 https://pbs.twimg.com/media/Cq9guJ5WgAADfpF.jpg 1 miniature_pinscher 0.796313 True Chihuahua 1.554130e-01 True Staffordshire_bullterrier 3.094330e-02 True
1804 832215726631055365 https://pbs.twimg.com/media/CwJR1okWIAA6XMp.jpg 1 Afghan_hound 0.274637 True borzoi 1.422040e-01 True doormat 1.096770e-01 False
1805 832273440279240704 https://pbs.twimg.com/ext_tw_video_thumb/83227... 1 Pembroke 0.134081 True ice_bear 5.192780e-02 False pug 4.431090e-02 True
1806 832369877331693569 https://pbs.twimg.com/media/C40r_GDWAAA5vNJ.jpg 1 kelpie 0.504690 True German_short-haired_pointer 1.052080e-01 True Staffordshire_bullterrier 5.433850e-02 True
1807 832397543355072512 https://pbs.twimg.com/media/C41FIiAW8AA7lMr.jpg 1 Pekinese 0.988916 True Brabancon_griffon 1.676800e-03 True Siamese_cat 1.125890e-03 False
1808 832636094638288896 https://pbs.twimg.com/media/C44eG7oUMAAA4Ss.jpg 1 Eskimo_dog 0.525032 True Siberian_husky 2.522380e-01 True malamute 2.168390e-01 True
1809 832757312314028032 https://pbs.twimg.com/media/C46MWnFVYAUg1RK.jpg 2 Cardigan 0.160888 True Staffordshire_bullterrier 1.594410e-01 True Boston_bull 1.543680e-01 True
1810 832769181346996225 https://pbs.twimg.com/media/C46UmzSVMAAqBug.jpg 1 jersey 0.895698 False sweatshirt 8.908540e-02 False poncho 2.975220e-03 False
1811 832998151111966721 https://pbs.twimg.com/media/C49nZavUYAEJjGw.jpg 1 boxer 0.539036 True French_bulldog 3.176170e-01 True bull_mastiff 9.392850e-02 True
1812 833124694597443584 https://pbs.twimg.com/media/C4_ad1IUoAEspsk.jpg 3 Cardigan 0.710523 True kelpie 1.061020e-01 True shopping_cart 5.547550e-02 False
1813 833479644947025920 https://pbs.twimg.com/media/C5EdT4jWEAARv2C.jpg 3 golden_retriever 0.727039 True cocker_spaniel 7.113980e-02 True Tibetan_mastiff 4.869420e-02 True
1814 833722901757046785 https://pbs.twimg.com/media/C5H6jmgW8AAevqq.jpg 1 West_Highland_white_terrier 0.918144 True Maltese_dog 2.572070e-02 True Lakeland_terrier 2.021110e-02 True
1815 833826103416520705 https://pbs.twimg.com/media/C5JYaYoVYAAcEQw.jpg 1 Chihuahua 0.438054 True kelpie 1.497060e-01 True Pembroke 9.648050e-02 True
1816 833863086058651648 https://pbs.twimg.com/media/C5J6DIpWQAEosSz.jpg 1 kuvasz 0.494969 True Great_Pyrenees 3.126320e-01 True golden_retriever 1.417360e-01 True
1817 834086379323871233 https://pbs.twimg.com/media/C5NFIsjWQAEI93t.jpg 1 bath_towel 0.736759 False sleeping_bag 6.295910e-02 False Labrador_retriever 4.526270e-02 True
1818 834167344700198914 https://pbs.twimg.com/media/C5OOxY6WAAAxERz.jpg 1 ox 0.991682 False bison 5.334520e-03 False water_buffalo 1.130250e-03 False
1819 834209720923721728 https://pbs.twimg.com/media/C5O1UAaWIAAMBMd.jpg 1 golden_retriever 0.754799 True Pekinese 1.978610e-01 True Labrador_retriever 8.654040e-03 True
1820 834458053273591808 https://pbs.twimg.com/media/C5SXK89XUAQg7GX.jpg 1 Rhodesian_ridgeback 0.468619 True whippet 1.775310e-01 True redbone 1.065520e-01 True
1821 834574053763584002 https://pbs.twimg.com/media/C5UAqgyXAAAbMWH.jpg 1 toilet_tissue 0.262936 False golden_retriever 2.265640e-01 True bathtub 7.887900e-02 False
1822 834786237630337024 https://pbs.twimg.com/media/C5XBp19WYAA5a_v.jpg 1 Border_terrier 0.156276 True Norwegian_elkhound 1.259120e-01 True Boston_bull 9.662390e-02 True
1823 834931633769889797 https://pbs.twimg.com/media/C5ZF4p-XEAEmApg.jpg 1 ice_bear 0.330573 False soft-coated_wheaten_terrier 1.964760e-01 True Irish_terrier 7.309650e-02 True
1824 835152434251116546 https://pbs.twimg.com/media/C5cOtWVWMAEjO5p.jpg 3 swing 0.967066 False American_Staffordshire_terrier 1.273090e-02 True Staffordshire_bullterrier 7.039220e-03 True
1825 835172783151792128 https://pbs.twimg.com/media/C5chM_jWAAQmov9.jpg 2 Border_collie 0.663138 True collie 1.524940e-01 True Cardigan 3.547060e-02 True
1826 835264098648616962 https://pbs.twimg.com/media/C5d0QtvXMAI_7uz.jpg 2 hyena 0.736871 False Chesapeake_Bay_retriever 8.750330e-02 True meerkat 4.205780e-02 False
1827 835297930240217089 https://pbs.twimg.com/media/C5eTCOVUsAAWhvc.jpg 1 Rottweiler 0.341276 True Border_terrier 3.362200e-01 True Gordon_setter 4.544830e-02 True
1828 835574547218894849 https://pbs.twimg.com/media/C5iOnigWcAAU3Ry.jpg 1 Staffordshire_bullterrier 0.610655 True muzzle 1.321380e-01 False American_Staffordshire_terrier 1.095440e-01 True
1829 836001077879255040 https://pbs.twimg.com/media/C5oSiskU0AE8sJ_.jpg 4 Samoyed 0.963558 True white_wolf 1.984760e-02 False malamute 5.904340e-03 True
1830 836260088725786625 https://pbs.twimg.com/media/C5r-G2IUwAA6KBY.jpg 1 borzoi 0.564688 True ice_bear 7.826750e-02 False Pembroke 5.791620e-02 True
1831 836380477523124226 https://pbs.twimg.com/media/C5trm6iWgAQ22Hw.jpg 1 wooden_spoon 0.082489 False sliding_door 6.101650e-02 False grand_piano 5.508610e-02 False
1832 836677758902222849 https://pbs.twimg.com/media/C5x57-TWUAEawQh.jpg 2 leopard 0.797410 False jaguar 9.548660e-02 False snow_leopard 7.969410e-02 False
1833 836753516572119041 https://pbs.twimg.com/media/C5y-4VwWcAIcaoj.jpg 1 mortarboard 0.936882 False academic_gown 2.081540e-02 False schipperke 1.156350e-02 True
1834 836989968035819520 https://pbs.twimg.com/media/C52V7PzWcAA_pVv.jpg 1 shopping_cart 0.572422 False shopping_basket 4.140020e-01 False toy_poodle 5.887300e-03 True
1835 837012587749474308 https://pbs.twimg.com/media/C52pYJXWgAA2BEf.jpg 1 toilet_tissue 0.186387 False cowboy_hat 1.585550e-01 False sombrero 1.494700e-01 False
1836 837110210464448512 https://pbs.twimg.com/media/C54DS1kXQAEU5pS.jpg 1 Siberian_husky 0.767696 True Eskimo_dog 2.170790e-01 True malamute 1.165680e-02 True
1837 837366284874571778 https://pbs.twimg.com/media/C57sMJwXMAASBSx.jpg 1 American_Staffordshire_terrier 0.660085 True Staffordshire_bullterrier 3.349470e-01 True dalmatian 2.697160e-03 True
1838 837471256429613056 https://pbs.twimg.com/media/C59LpELWUAEUmYh.jpg 1 Norwegian_elkhound 0.976255 True keeshond 1.399020e-02 True seat_belt 2.110540e-03 False
1839 837482249356513284 https://pbs.twimg.com/media/C59VqMUXEAAzldG.jpg 2 birdhouse 0.541196 False can_opener 1.210940e-01 False carton 5.613670e-02 False
1840 837820167694528512 https://pbs.twimg.com/media/C6CI_jbVAAA3-a1.jpg 1 golden_retriever 0.887625 True Labrador_retriever 6.871750e-02 True kuvasz 3.038680e-02 True
1841 838083903487373313 https://pbs.twimg.com/media/C6F42cGUYAAIKsX.jpg 2 chow 0.800975 True seat_belt 1.641330e-01 False Pomeranian 1.798100e-02 True
1842 838476387338051585 https://pbs.twimg.com/media/C6Ld0wYWgAQQqMC.jpg 3 Great_Pyrenees 0.997692 True kuvasz 1.000640e-03 True Newfoundland 4.045560e-04 True
1843 838561493054533637 https://pbs.twimg.com/media/C6MrOsEXQAENOds.jpg 1 kelpie 0.216562 True doormat 1.399940e-01 False dalmatian 1.328200e-01 True
1844 838916489579200512 https://pbs.twimg.com/media/C6RkiQZUsAAM4R4.jpg 2 web_site 0.993651 False monitor 1.405900e-03 False envelope 1.093090e-03 False
1845 838921590096166913 https://pbs.twimg.com/media/C6Ryuf7UoAAFX4a.jpg 1 Border_terrier 0.664538 True Brabancon_griffon 1.704510e-01 True Yorkshire_terrier 8.782360e-02 True
1846 839239871831150596 https://pbs.twimg.com/media/C6WUNadWYAAPxHv.jpg 3 Leonberg 0.927021 True Newfoundland 5.000910e-02 True Saint_Bernard 1.072780e-02 True
1847 839290600511926273 https://pbs.twimg.com/media/C6XBt9XXEAEEW9U.jpg 1 web_site 0.670892 False monitor 1.015650e-01 False screen 7.530610e-02 False
1848 839549326359670784 https://pbs.twimg.com/media/C6atpTLWYAIL7bU.jpg 1 swing 0.393527 False Norwich_terrier 5.248000e-02 True Pembroke 4.990060e-02 True
1849 839990271299457024 https://pbs.twimg.com/media/C6g-sX-VsAAHfJ9.jpg 2 Staffordshire_bullterrier 0.604938 True American_Staffordshire_terrier 3.115400e-01 True Boston_bull 3.715910e-02 True
1850 840268004936019968 https://pbs.twimg.com/media/C6k7SaEXUAg83_J.jpg 3 Chesapeake_Bay_retriever 0.863987 True Labrador_retriever 5.263230e-02 True kelpie 3.257360e-02 True
1851 840370681858686976 https://pbs.twimg.com/media/C6mYrK0UwAANhep.jpg 1 teapot 0.981819 False cup 1.402580e-02 False coffeepot 2.420540e-03 False
1852 840632337062862849 https://pbs.twimg.com/media/C6qGphPV4AEKrdc.jpg 1 golden_retriever 0.711148 True cocker_spaniel 1.579290e-01 True Labrador_retriever 5.958190e-02 True
1853 840696689258311684 https://pbs.twimg.com/media/C6rBLenU0AAr8MN.jpg 1 web_site 0.841768 False rule 7.087310e-03 False envelope 6.820300e-03 False
1854 841077006473256960 https://pbs.twimg.com/media/C6wbE5bXUAAh1Hv.jpg 1 Brittany_spaniel 0.962985 True Blenheim_spaniel 1.482000e-02 True clumber 9.557110e-03 True
1855 841314665196081154 https://pbs.twimg.com/ext_tw_video_thumb/84131... 1 Afghan_hound 0.903712 True Saluki 3.521500e-02 True bloodhound 2.656550e-02 True
1856 841439858740625411 https://pbs.twimg.com/media/C61lFFiWoAAJdiL.jpg 3 military_uniform 0.853684 False Labrador_retriever 4.819990e-02 True groenendael 1.539440e-02 True
1857 841680585030541313 https://pbs.twimg.com/media/C65AA7_WoAEGqA9.jpg 1 Chihuahua 0.547401 True bow_tie 1.983610e-01 False Pembroke 5.849250e-02 True
1858 841833993020538882 https://pbs.twimg.com/ext_tw_video_thumb/81742... 1 ice_bear 0.336200 False Samoyed 2.013580e-01 True Eskimo_dog 1.867890e-01 True
1859 842115215311396866 https://pbs.twimg.com/media/C6_LTCZWoAAKm_O.jpg 1 chow 0.293493 True Newfoundland 1.813360e-01 True schipperke 1.251520e-01 True
1860 842163532590374912 https://pbs.twimg.com/media/C6_3QgMWsAMNnAk.jpg 2 French_bulldog 0.891227 True soccer_ball 2.281100e-02 False bull_mastiff 1.285200e-02 True
1861 842535590457499648 https://pbs.twimg.com/media/C7FJpgVW4AIDzi6.jpg 1 Pembroke 0.685084 True Cardigan 3.146080e-01 True basenji 1.598240e-04 True
1862 842765311967449089 https://pbs.twimg.com/media/C7IalMVX0AATKRD.jpg 1 tub 0.665238 False bucket 1.051660e-01 False Labrador_retriever 2.933990e-02 True
1863 842846295480000512 https://pbs.twimg.com/media/C7JkO0rX0AErh7X.jpg 1 Labrador_retriever 0.461076 True golden_retriever 1.549460e-01 True Chihuahua 1.102490e-01 True
1864 842892208864923648 https://pbs.twimg.com/ext_tw_video_thumb/80710... 1 Chihuahua 0.505370 True Pomeranian 1.203580e-01 True toy_terrier 7.700810e-02 True
1865 843235543001513987 https://pbs.twimg.com/media/C7PGQJAWwAAibui.jpg 1 Pembroke 0.958452 True Cardigan 2.376990e-02 True Chihuahua 5.269360e-03 True
1866 843604394117681152 https://pbs.twimg.com/media/C7UVuE_U0AI8GGl.jpg 1 Labrador_retriever 0.430583 True golden_retriever 2.635810e-01 True Great_Pyrenees 1.793850e-01 True
1867 843856843873095681 https://pbs.twimg.com/media/C7X7Ui0XgAA3m19.jpg 1 Labrador_retriever 0.922540 True golden_retriever 7.435780e-02 True Great_Pyrenees 2.324950e-03 True
1868 844223788422217728 https://pbs.twimg.com/media/C7dJCnqU4AAswat.jpg 1 Labrador_retriever 0.719510 True Chesapeake_Bay_retriever 1.220190e-01 True Newfoundland 3.882760e-02 True
1869 844580511645339650 https://pbs.twimg.com/media/C7iNfq1W0AAcbsR.jpg 1 washer 0.903064 False dishwasher 3.248900e-02 False printer 1.645620e-02 False
1870 844704788403113984 https://pbs.twimg.com/media/C7j-hkSW0AIxCZC.jpg 1 Labrador_retriever 0.980213 True golden_retriever 7.011670e-03 True beagle 3.146970e-03 True
1871 844973813909606400 https://pbs.twimg.com/media/C7nzMwTV4AARz4t.jpg 1 Labrador_retriever 0.742421 True golden_retriever 1.952180e-01 True Chihuahua 1.732010e-02 True
1872 844979544864018432 https://pbs.twimg.com/media/C7n4aQ0VAAAohkL.jpg 3 tennis_ball 0.999281 False racket 3.700800e-04 False Shetland_sheepdog 1.320680e-04 True
1873 845306882940190720 https://pbs.twimg.com/media/C7siH5DXkAACnDT.jpg 1 Irish_water_spaniel 0.567475 True Labrador_retriever 1.694960e-01 True curly-coated_retriever 1.015180e-01 True
1874 845397057150107648 https://pbs.twimg.com/media/C7t0IzLWkAINoft.jpg 1 Dandie_Dinmont 0.394404 True Maltese_dog 1.865370e-01 True West_Highland_white_terrier 1.819850e-01 True
1875 845677943972139009 https://pbs.twimg.com/media/C7xzmngWkAAAp9C.jpg 1 chow 0.808681 True groenendael 1.231410e-01 True Newfoundland 2.214320e-02 True
1876 845812042753855489 https://pbs.twimg.com/media/C7ztkInW0AEh1CD.jpg 1 Samoyed 0.979803 True chow 1.592260e-02 True white_wolf 1.302790e-03 False
1877 846042936437604353 https://pbs.twimg.com/media/C72_iaUVUAEhZSn.jpg 1 golden_retriever 0.961110 True Labrador_retriever 1.669520e-02 True Tibetan_mastiff 9.081530e-03 True
1878 846153765933735936 https://pbs.twimg.com/media/C74kWqoU8AEaf3v.jpg 1 giant_schnauzer 0.346468 True flat-coated_retriever 2.184510e-01 True Labrador_retriever 1.080200e-01 True
1879 846514051647705089 https://pbs.twimg.com/media/C79sB4xXwAEvwKY.jpg 2 golden_retriever 0.650003 True Leonberg 6.519920e-02 True Norfolk_terrier 5.295530e-02 True
1880 846874817362120707 https://pbs.twimg.com/media/C8C0JYHW0AAy-7u.jpg 2 Shetland_sheepdog 0.450539 True papillon 1.879280e-01 True collie 1.400680e-01 True
1881 847116187444137987 https://pbs.twimg.com/media/C8GPrNDW4AAkLde.jpg 1 white_wolf 0.128935 False American_Staffordshire_terrier 1.134340e-01 True dingo 8.123140e-02 False
1882 847157206088847362 https://pbs.twimg.com/media/C8G0_CMWsAAjjAY.jpg 2 Staffordshire_bullterrier 0.219609 True American_Staffordshire_terrier 1.786710e-01 True pug 1.232710e-01 True
1883 847251039262605312 https://pbs.twimg.com/media/C8IKUjAUwAEP-En.jpg 1 Airedale 0.495380 True Irish_terrier 3.164560e-01 True Lakeland_terrier 1.585330e-01 True
1884 847606175596138505 https://pbs.twimg.com/media/C8NNUDBUMAE0XxJ.jpg 1 Cardigan 0.413688 True Boston_bull 3.818360e-01 True doormat 6.586780e-02 False
1885 847842811428974592 https://pbs.twimg.com/media/C8QkidrVYAQXQh7.jpg 1 Bernese_mountain_dog 0.951337 True Greater_Swiss_Mountain_dog 1.684910e-02 True Appenzeller 1.084920e-02 True
1886 847962785489326080 https://pbs.twimg.com/media/C8SRpHNUIAARB3j.jpg 1 sea_lion 0.882654 False mink 6.688020e-02 False otter 2.567870e-02 False
1887 847971574464610304 https://pbs.twimg.com/media/C8SZH1EWAAAIRRF.jpg 1 coffee_mug 0.633652 False cup 2.733920e-01 False toilet_tissue 6.665580e-02 False
1888 848212111729840128 https://pbs.twimg.com/media/C8V0aI5V0AAgO9m.jpg 1 Bedlington_terrier 0.333486 True Ibizan_hound 2.457970e-01 True wallaby 1.316470e-01 False
1889 848324959059550208 https://pbs.twimg.com/media/C8XbDR1WAAAxND8.jpg 1 malamute 0.544576 True Siberian_husky 2.902680e-01 True Eskimo_dog 1.544210e-01 True
1890 848690551926992896 https://pbs.twimg.com/media/C8cnjHuXsAAoZQf.jpg 1 flat-coated_retriever 0.823648 True Newfoundland 1.005710e-01 True groenendael 3.830970e-02 True
1891 849051919805034497 https://pbs.twimg.com/media/C8hwNxbXYAAwyVG.jpg 1 fountain 0.997509 False American_black_bear 1.413120e-03 False sundial 6.811150e-04 False
1892 849336543269576704 https://pbs.twimg.com/media/C8lzFC4XcAAQxB4.jpg 1 patio 0.521788 False prison 1.495440e-01 False restaurant 2.715260e-02 False
1893 849412302885593088 https://pbs.twimg.com/media/C8m3-iQVoAAETnF.jpg 4 schipperke 0.907559 True crossword_puzzle 1.793390e-02 False Chihuahua 1.619070e-02 True
1894 849776966551130114 https://pbs.twimg.com/media/C8sDpDWWsAE5P08.jpg 2 Chihuahua 0.292092 True toy_terrier 1.368520e-01 True bonnet 1.031110e-01 False
1895 850019790995546112 https://pbs.twimg.com/media/C8vgfTsXgAA561h.jpg 3 Shetland_sheepdog 0.759907 True collie 1.074050e-01 True Pembroke 5.233530e-02 True
1896 850145622816686080 https://pbs.twimg.com/media/C8xS655XkAAv9vo.jpg 2 tennis_ball 0.714798 False kelpie 1.053900e-01 True malinois 5.855270e-02 True
1897 850380195714523136 https://pbs.twimg.com/ext_tw_video_thumb/85038... 1 Yorkshire_terrier 0.249012 True Maltese_dog 1.663640e-01 True Shih-Tzu 1.422540e-01 True
1898 850753642995093505 https://pbs.twimg.com/media/C8576jrW0AEYWFy.jpg 1 pug 0.996952 True bull_mastiff 9.959010e-04 True French_bulldog 8.833800e-04 True
1899 851224888060895234 https://pbs.twimg.com/media/C9AohFoWsAUmxDs.jpg 3 car_mirror 0.971512 False seat_belt 7.063460e-03 False standard_poodle 5.682650e-03 True
1900 851464819735769094 https://pbs.twimg.com/media/C9ECujZXsAAPCSM.jpg 2 web_site 0.919649 False menu 2.630610e-02 False crossword_puzzle 3.481510e-03 False
1901 851591660324737024 https://pbs.twimg.com/media/C9F2FG5WAAAJ0iN.jpg 1 Cardigan 0.394507 True Chihuahua 7.725400e-02 True French_bulldog 7.655880e-02 True
1902 851861385021730816 https://pbs.twimg.com/media/C8W6sY_W0AEmttW.jpg 1 pencil_box 0.662183 False purse 6.650550e-02 False pillow 4.472530e-02 False
1903 851953902622658560 https://pbs.twimg.com/media/C4KHj-nWQAA3poV.jpg 1 Staffordshire_bullterrier 0.757547 True American_Staffordshire_terrier 1.499500e-01 True Chesapeake_Bay_retriever 4.752270e-02 True
1904 852189679701164033 https://pbs.twimg.com/media/C9OV99SXsAEmj1U.jpg 1 barrow 0.423150 False Bernese_mountain_dog 4.153740e-01 True EntleBucher 6.734540e-02 True
1905 852226086759018497 https://pbs.twimg.com/ext_tw_video_thumb/85222... 1 prison 0.352793 False dishwasher 1.107230e-01 False file 9.411200e-02 False
1906 852311364735569921 https://pbs.twimg.com/media/C9QEqZ7XYAIR7fS.jpg 1 barbell 0.971581 False dumbbell 2.841790e-02 False go-kart 5.595040e-07 False
1907 852553447878664193 https://pbs.twimg.com/media/C9Tg1bPW0AkAMDI.jpg 1 bloodhound 0.186498 True Brabancon_griffon 1.390280e-01 True Rottweiler 1.259400e-01 True
1908 852672615818899456 https://pbs.twimg.com/media/C9VNNp1XkAEWRFb.jpg 1 golden_retriever 0.711235 True otterhound 6.823470e-02 True Sussex_spaniel 4.656170e-02 True
1909 852912242202992640 https://pbs.twimg.com/media/C9YnKK3VoAAxn1E.jpg 1 Great_Dane 0.783765 True Rhodesian_ridgeback 1.141470e-01 True English_foxhound 4.643950e-02 True
1910 853299958564483072 https://pbs.twimg.com/media/C9eHyF7XgAAOxPM.jpg 1 grille 0.652280 False beach_wagon 1.128460e-01 False convertible 8.625230e-02 False
1911 853639147608842240 https://pbs.twimg.com/media/C9i8RhhXoAAdkMT.jpg 1 German_shepherd 0.509879 True malinois 2.373110e-01 True kelpie 4.691620e-02 True
1912 853760880890318849 https://pbs.twimg.com/media/C9kq_bbVwAAuRZd.jpg 1 miniature_pinscher 0.292519 True Chihuahua 1.209460e-01 True Rottweiler 1.194900e-01 True
1913 854010172552949760 https://pbs.twimg.com/media/C9oNt91WAAAFSLS.jpg 1 English_springer 0.354733 True collie 1.775380e-01 True Border_collie 1.317060e-01 True
1914 854120357044912130 https://pbs.twimg.com/media/C9px7jyVwAAnmwN.jpg 4 black-and-tan_coonhound 0.854861 True Doberman 5.079180e-02 True bluetick 2.176170e-02 True
1915 854365224396361728 https://pbs.twimg.com/media/C9tQokgUIAEETSx.jpg 1 Pembroke 0.907080 True Cardigan 8.627200e-02 True Chihuahua 1.413230e-03 True
1916 854482394044301312 https://pbs.twimg.com/media/C9u7MtmV0AA741s.jpg 1 Chihuahua 0.260242 True toy_poodle 1.891580e-01 True Labrador_retriever 1.441950e-01 True
1917 854732716440526848 https://pbs.twimg.com/media/C9ye3b3WAAAlTo0.jpg 1 Pembroke 0.695548 True Cardigan 5.890170e-02 True chow 2.841060e-02 True
1918 855459453768019968 https://pbs.twimg.com/media/C98z1ZAXsAEIFFn.jpg 2 Blenheim_spaniel 0.389513 True Pekinese 1.882200e-01 True Japanese_spaniel 8.262820e-02 True
1919 855851453814013952 https://pbs.twimg.com/media/C-CYWrvWAAU8AXH.jpg 1 flat-coated_retriever 0.321676 True Labrador_retriever 1.151380e-01 True groenendael 9.609970e-02 True
1920 856282028240666624 https://pbs.twimg.com/media/C-If9ZwXoAAfDX2.jpg 4 Chihuahua 0.876543 True Italian_greyhound 3.296180e-02 True Cardigan 2.077590e-02 True
1921 856526610513747968 https://pbs.twimg.com/media/C-L-aIYXgAIR0jY.jpg 1 Old_English_sheepdog 0.798481 True Tibetan_terrier 6.060240e-02 True standard_poodle 4.072190e-02 True
1922 856543823941562368 https://pbs.twimg.com/media/C-MOEDCXYAEjp7o.jpg 1 Boston_bull 0.306910 True Siamese_cat 1.912180e-01 False Chihuahua 1.892880e-01 True
1923 857029823797047296 https://pbs.twimg.com/media/C-TIEwMW0AEjb55.jpg 2 golden_retriever 0.968623 True Labrador_retriever 1.032520e-02 True Saluki 4.148420e-03 True
1924 857263160327368704 https://pbs.twimg.com/media/C-WcS4MXoAADrBU.jpg 1 Samoyed 0.998021 True Pomeranian 9.216360e-04 True keeshond 3.112610e-04 True
1925 857393404942143489 https://pbs.twimg.com/media/C-YSwA_XgAEOr25.jpg 3 malamute 0.841597 True Siberian_husky 7.364350e-02 True Eskimo_dog 7.212860e-02 True
1926 857746408056729600 https://pbs.twimg.com/media/C-dTzBzXUAQRjYz.jpg 1 Labrador_retriever 0.919832 True beagle 4.351300e-02 True golden_retriever 2.335880e-02 True
1927 857989990357356544 https://pbs.twimg.com/media/C-gxV9ZXkAIBL-S.jpg 1 French_bulldog 0.432580 True English_springer 3.258980e-01 True Lakeland_terrier 4.261790e-02 True
1928 858107933456039936 https://pbs.twimg.com/media/C-icm_WXUAAmuRR.jpg 1 golden_retriever 0.863874 True Labrador_retriever 1.592000e-02 True doormat 1.061530e-02 False
1929 858471635011153920 https://pbs.twimg.com/media/C-nnZBdXkAAB-wg.jpg 1 Pembroke 0.987407 True Cardigan 8.723030e-03 True basenji 3.423730e-03 True
1930 858843525470990336 https://pbs.twimg.com/media/C-s5oYZXkAAMHHq.jpg 1 golden_retriever 0.578120 True Labrador_retriever 2.860590e-01 True bloodhound 2.691730e-02 True
1931 859074603037188101 https://pbs.twimg.com/media/C-wLyufW0AA546I.jpg 1 revolver 0.190292 False projectile 1.490640e-01 False fountain 6.604660e-02 False
1932 859196978902773760 https://pbs.twimg.com/ext_tw_video_thumb/85919... 1 Angora 0.224218 False malamute 2.161630e-01 True Persian_cat 1.283830e-01 False
1933 859607811541651456 https://pbs.twimg.com/media/C-3wvtxXcAUTuBE.jpg 1 golden_retriever 0.895529 True Irish_setter 2.409930e-02 True Labrador_retriever 1.928540e-02 True
1934 859851578198683649 https://pbs.twimg.com/media/C-7OcfyXsAAsqzU.jpg 4 Labrador_retriever 0.899086 True golden_retriever 4.709080e-02 True kuvasz 2.320630e-02 True
1935 859924526012018688 https://pbs.twimg.com/media/C-8QypZXcAAekaF.jpg 1 French_bulldog 0.254587 True Staffordshire_bullterrier 1.925580e-01 True hog 1.002700e-01 False
1936 860184849394610176 https://pbs.twimg.com/media/C-_9jWWUwAAnwkd.jpg 1 chimpanzee 0.267612 False gorilla 1.042930e-01 False orangutan 5.990750e-02 False
1937 860276583193509888 https://pbs.twimg.com/media/C_BQ_NlVwAAgYGD.jpg 1 lakeside 0.312299 False dock 1.598420e-01 False canoe 7.079450e-02 False
1938 860524505164394496 https://pbs.twimg.com/media/C_EyeKuXkAAdxY-.jpg 1 Bedlington_terrier 0.286558 True toy_poodle 2.351930e-01 True Lakeland_terrier 8.795070e-02 True
1939 860563773140209665 https://pbs.twimg.com/media/C_FWL0vVwAA13N7.jpg 1 Cardigan 0.583936 True Pembroke 5.597940e-02 True beagle 4.589570e-02 True
1940 860924035999428608 https://pbs.twimg.com/media/C_KVJjDXsAEUCWn.jpg 2 envelope 0.933016 False oscilloscope 1.259140e-02 False paper_towel 1.117850e-02 False
1941 861005113778896900 https://pbs.twimg.com/media/C_LnlF5VoAEsL1K.jpg 1 German_shepherd 0.507951 True Pembroke 1.361130e-01 True muzzle 7.576420e-02 False
1942 861288531465048066 https://pbs.twimg.com/ext_tw_video_thumb/86128... 1 syringe 0.144712 False oxygen_mask 1.066840e-01 False Bouvier_des_Flandres 8.261020e-02 True
1943 861383897657036800 https://pbs.twimg.com/media/C_RAFTxUAAAbXjV.jpg 1 Cardigan 0.771008 True Pembroke 1.371740e-01 True French_bulldog 6.330860e-02 True
1944 861769973181624320 https://pbs.twimg.com/media/CzG425nWgAAnP7P.jpg 2 Arabian_camel 0.366248 False house_finch 2.098520e-01 False cocker_spaniel 4.640320e-02 True
1945 862096992088072192 https://pbs.twimg.com/media/C_bIo7QXYAAGfPu.jpg 2 chow 0.677589 True Pomeranian 2.706480e-01 True Pekinese 3.810990e-02 True
1946 862457590147678208 https://pbs.twimg.com/media/C_gQmaTUMAAPYSS.jpg 1 home_theater 0.496348 False studio_couch 1.672560e-01 False barber_chair 5.262500e-02 False
1947 862722525377298433 https://pbs.twimg.com/media/C_kBjuUUIAArs2-.jpg 1 basset 0.393330 True beagle 2.420340e-01 True boxer 7.769250e-02 True
1948 862831371563274240 https://pbs.twimg.com/media/C_lkieeVwAAm0L4.jpg 2 Australian_terrier 0.207281 True Irish_terrier 1.562960e-01 True German_shepherd 1.235360e-01 True
1949 863062471531167744 https://pbs.twimg.com/media/C_o2vKCUwAAgtOp.jpg 2 French_bulldog 0.935804 True pug 5.957620e-02 True boxer 1.412180e-03 True
1950 863079547188785154 https://pbs.twimg.com/media/C_pGRInUwAAmTY_.jpg 1 Lakeland_terrier 0.275242 True Airedale 1.905690e-01 True teddy 1.025950e-01 False
1951 863432100342583297 https://pbs.twimg.com/media/C_uG6eAUAAAvMvR.jpg 1 Staffordshire_bullterrier 0.690517 True French_bulldog 1.033600e-01 True beagle 7.948940e-02 True
1952 863553081350529029 https://pbs.twimg.com/ext_tw_video_thumb/86355... 1 Eskimo_dog 0.413330 True malamute 3.476460e-01 True Siberian_husky 1.495360e-01 True
1953 863907417377173506 https://pbs.twimg.com/media/C_03NPeUQAAgrMl.jpg 1 marmot 0.358828 False meerkat 1.747030e-01 False weasel 1.234850e-01 False
1954 864197398364647424 https://pbs.twimg.com/media/C_4-8iPV0AA1Twg.jpg 4 golden_retriever 0.945905 True Labrador_retriever 2.126360e-02 True Tibetan_mastiff 2.049280e-02 True
1955 864279568663928832 https://pbs.twimg.com/media/C_6JrWZVwAAHhCD.jpg 1 bull_mastiff 0.668613 True French_bulldog 1.805620e-01 True Staffordshire_bullterrier 5.223740e-02 True
1956 864873206498414592 https://pbs.twimg.com/media/DAClmHkXcAA1kSv.jpg 2 pole 0.478616 False lakeside 1.141820e-01 False wreck 5.592650e-02 False
1957 865006731092295680 https://pbs.twimg.com/media/DAEfCFXUIAA1uqj.jpg 1 Pembroke 0.989882 True Cardigan 9.906460e-03 True basenji 1.349520e-04 True
1958 865359393868664832 https://pbs.twimg.com/media/DAJfxqGVoAAnvQt.jpg 2 Chesapeake_Bay_retriever 0.832435 True Labrador_retriever 1.635510e-01 True Weimaraner 2.770250e-03 True
1959 865718153858494464 https://pbs.twimg.com/media/DAOmEZiXYAAcv2S.jpg 1 golden_retriever 0.673664 True kuvasz 1.575230e-01 True Labrador_retriever 1.260730e-01 True
1960 866334964761202691 https://pbs.twimg.com/media/DAXXDQNXgAAoYQH.jpg 1 Samoyed 0.984086 True Pomeranian 7.919280e-03 True keeshond 3.328130e-03 True
1961 866450705531457537 https://pbs.twimg.com/media/DAZAUfBXcAAG_Nn.jpg 2 French_bulldog 0.905334 True Boston_bull 7.805970e-02 True pug 1.770920e-03 True
1962 866686824827068416 https://pbs.twimg.com/media/DAcXEWuXkAIBDGJ.jpg 1 flat-coated_retriever 0.514730 True groenendael 3.064070e-01 True curly-coated_retriever 6.131410e-02 True
1963 867051520902168576 https://pbs.twimg.com/media/DAhiwb0XcAA8x5Q.jpg 1 Samoyed 0.471403 True Pekinese 3.022190e-01 True Pomeranian 1.566060e-01 True
1964 867072653475098625 https://pbs.twimg.com/media/DAElHfmUMAEH9lB.jpg 1 Blenheim_spaniel 0.352946 True papillon 2.117660e-01 True Pekinese 1.129520e-01 True
1965 867421006826221569 https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg 1 Eskimo_dog 0.616457 True Siberian_husky 3.813300e-01 True malamute 1.670220e-03 True
1966 867774946302451713 https://pbs.twimg.com/media/DAr0tDZXUAEMvdu.jpg 2 Border_collie 0.661953 True Cardigan 1.757180e-01 True collie 8.714240e-02 True
1967 867900495410671616 https://pbs.twimg.com/media/DAtm5MkXoAA4R6P.jpg 1 Labrador_retriever 0.522644 True kuvasz 3.324610e-01 True dalmatian 3.200810e-02 True
1968 868552278524837888 https://pbs.twimg.com/media/DA23sCeVoAE3uF0.jpg 1 whippet 0.378151 True Italian_greyhound 2.759350e-01 True American_Staffordshire_terrier 9.499060e-02 True
1969 868622495443632128 https://pbs.twimg.com/media/DA33i0XXsAEQtCA.jpg 1 Labrador_retriever 0.868107 True Great_Pyrenees 6.097300e-02 True Saint_Bernard 3.348890e-02 True
1970 868880397819494401 https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False
1971 869227993411051520 https://pbs.twimg.com/media/DBAePiVXcAAqHSR.jpg 1 Pembroke 0.664181 True Chihuahua 1.692340e-01 True Cardigan 1.327000e-01 True
1972 869596645499047938 https://pbs.twimg.com/media/DBFtiYqWAAAsjj1.jpg 1 Chihuahua 0.955156 True toy_terrier 8.053730e-03 True muzzle 6.295630e-03 False
1973 869702957897576449 https://pbs.twimg.com/media/DBHOOfOXoAABKlU.jpg 1 Pembroke 0.993449 True Cardigan 6.325080e-03 True Chihuahua 1.775980e-04 True
1974 869772420881756160 https://pbs.twimg.com/media/DBINZcxXgAQ-R6P.jpg 1 Pembroke 0.980148 True Cardigan 1.927110e-02 True malamute 1.362600e-04 True
1975 870063196459192321 https://pbs.twimg.com/media/DBMV3NnXUAAm0Pp.jpg 1 comic_book 0.534409 False envelope 2.807220e-01 False book_jacket 4.378550e-02 False
1976 870308999962521604 https://pbs.twimg.com/media/DBP1asiUAAEKZI5.jpg 2 Greater_Swiss_Mountain_dog 0.622752 True Appenzeller 1.584630e-01 True EntleBucher 1.481150e-01 True
1977 870374049280663552 https://pbs.twimg.com/media/DBQwlFCXkAACSkI.jpg 1 golden_retriever 0.841001 True Great_Pyrenees 9.927840e-02 True Labrador_retriever 3.262130e-02 True
1978 870656317836468226 https://pbs.twimg.com/media/DBUxSSTXsAA-Jn1.jpg 4 Pembroke 0.945495 True Cardigan 4.587550e-02 True beagle 4.329430e-03 True
1979 870804317367881728 https://pbs.twimg.com/media/DBW35ZsVoAEWZUU.jpg 1 home_theater 0.168290 False sandbar 9.804040e-02 False television 7.972940e-02 False
1980 871032628920680449 https://pbs.twimg.com/media/DBaHi3YXgAE6knM.jpg 1 kelpie 0.398053 True macaque 6.895490e-02 False dingo 5.060180e-02 False
1981 871515927908634625 https://pbs.twimg.com/media/DBg_HT9WAAEeIMM.jpg 2 komondor 0.974781 True briard 2.004130e-02 True swab 3.228240e-03 False
1982 871762521631449091 https://pbs.twimg.com/media/DBkfY58XcAEdzZy.jpg 2 Labrador_retriever 0.921393 True golden_retriever 6.460800e-02 True bloodhound 3.383370e-03 True
1983 871879754684805121 https://pbs.twimg.com/media/DBmKAmBXUAE-pQ-.jpg 1 Shetland_sheepdog 0.969171 True collie 1.826070e-02 True Pomeranian 8.515340e-03 True
1984 872122724285648897 https://pbs.twimg.com/media/DBpm-5UXcAUeCru.jpg 1 basketball 0.808396 False pug 6.673630e-02 True dalmatian 5.456980e-02 True
1985 872261713294495745 https://pbs.twimg.com/media/DBrlZk2UQAAfAkd.jpg 2 Labrador_retriever 0.972019 True flat-coated_retriever 8.178280e-03 True Chesapeake_Bay_retriever 7.359270e-03 True
1986 872486979161796608 https://pbs.twimg.com/media/DBuyRlTUwAAYhG9.jpg 1 Pembroke 0.931861 True Cardigan 3.772120e-02 True Chihuahua 1.196670e-02 True
1987 872620804844003328 https://pbs.twimg.com/media/DBwr_hzXkAEnZBW.jpg 1 cocker_spaniel 0.513191 True Sussex_spaniel 1.590880e-01 True standard_poodle 1.495090e-01 True
1988 872820683541237760 https://pbs.twimg.com/media/DBzhx0PWAAEhl0E.jpg 3 pug 0.999120 True French_bulldog 5.519200e-04 True bull_mastiff 7.289040e-05 True
1989 872967104147763200 https://pbs.twimg.com/media/DB1m871XUAAw5vZ.jpg 2 Labrador_retriever 0.476913 True Chesapeake_Bay_retriever 1.741450e-01 True German_short-haired_pointer 9.286140e-02 True
1990 873213775632977920 https://pbs.twimg.com/media/DB5HTBGXUAE0TiK.jpg 1 vizsla 0.619782 True bloodhound 3.380690e-01 True Chesapeake_Bay_retriever 1.267630e-02 True
1991 873580283840344065 https://pbs.twimg.com/media/DB-UotKXkAEHXVi.jpg 1 Newfoundland 0.678537 True Tibetan_mastiff 2.440220e-01 True chow 4.852950e-02 True
1992 873697596434513921 https://pbs.twimg.com/media/DA7iHL5U0AA1OQo.jpg 1 laptop 0.153718 False French_bulldog 9.998390e-02 True printer 7.712990e-02 False
1993 874012996292530176 https://pbs.twimg.com/media/DCEeLxjXsAAvNSM.jpg 2 Cardigan 0.806674 True Pembroke 1.166220e-01 True kelpie 4.918190e-02 True
1994 874057562936811520 https://pbs.twimg.com/media/DCFGtdoXkAEsqIw.jpg 1 flat-coated_retriever 0.832177 True black-and-tan_coonhound 4.043690e-02 True Newfoundland 2.822830e-02 True
1995 874296783580663808 https://pbs.twimg.com/media/DCIgSR0XgAANEOY.jpg 1 cocker_spaniel 0.437216 True miniature_poodle 2.771910e-01 True toy_poodle 1.574020e-01 True
1996 874680097055178752 https://pbs.twimg.com/media/DCN85nGUwAAzG_q.jpg 1 Labrador_retriever 0.836052 True Staffordshire_bullterrier 4.706910e-02 True beagle 3.600710e-02 True
1997 875021211251597312 https://pbs.twimg.com/media/DCSzF3NVoAAPzT4.jpg 2 West_Highland_white_terrier 0.714319 True Siberian_husky 9.191330e-02 True Great_Pyrenees 4.603820e-02 True
1998 875144289856114688 https://pbs.twimg.com/ext_tw_video_thumb/87514... 1 Siberian_husky 0.245048 True Pembroke 2.237160e-01 True dingo 1.607530e-01 False
1999 875747767867523072 https://pbs.twimg.com/media/DCdH8YpUQAAiEbL.jpg 1 Labrador_retriever 0.799551 True Chesapeake_Bay_retriever 1.799750e-01 True vizsla 4.617600e-03 True
2000 876120275196170240 https://pbs.twimg.com/media/DCiavj_UwAAcXep.jpg 1 Bernese_mountain_dog 0.534327 True Saint_Bernard 3.463120e-01 True Greater_Swiss_Mountain_dog 9.493270e-02 True
2001 876484053909872640 https://pbs.twimg.com/media/DCnll_dUQAAkBdG.jpg 1 golden_retriever 0.874566 True Irish_terrier 3.735420e-02 True chow 1.672360e-02 True
2002 876838120628539392 https://pbs.twimg.com/media/DCsnnZsVwAEfkyi.jpg 1 bloodhound 0.575751 True redbone 2.409700e-01 True Tibetan_mastiff 8.893480e-02 True
2003 877201837425926144 https://pbs.twimg.com/media/DCxyahJWsAAddSC.jpg 1 Pembroke 0.931120 True Cardigan 6.869820e-02 True basenji 8.173790e-05 True
2004 877316821321428993 https://pbs.twimg.com/media/DCza_vtXkAQXGpC.jpg 1 Saluki 0.509967 True Italian_greyhound 9.049730e-02 True golden_retriever 7.940580e-02 True
2005 877556246731214848 https://pbs.twimg.com/media/DC20wEcW0AAf59m.jpg 1 basset 0.995368 True Welsh_springer_spaniel 1.936210e-03 True bathtub 4.679190e-04 False
2006 877611172832227328 https://pbs.twimg.com/media/DCszHgmW0AAmIpT.jpg 1 Irish_setter 0.364729 True golden_retriever 2.029070e-01 True Irish_terrier 1.074730e-01 True
2007 877736472329191424 https://pbs.twimg.com/media/DC5YqoQW0AArOLH.jpg 2 Chesapeake_Bay_retriever 0.837956 True Labrador_retriever 6.203420e-02 True Weimaraner 4.059910e-02 True
2008 878057613040115712 https://pbs.twimg.com/media/DC98vABUIAA97pz.jpg 1 French_bulldog 0.839097 True Boston_bull 7.879940e-02 True toy_terrier 1.524340e-02 True
2009 878281511006478336 https://pbs.twimg.com/media/DDBIX9QVYAAohGa.jpg 1 basset 0.320420 True collie 2.159750e-01 True Appenzeller 1.285070e-01 True
2010 878776093423087618 https://pbs.twimg.com/media/DDIKMXzW0AEibje.jpg 2 Italian_greyhound 0.734684 True whippet 1.504870e-01 True Ibizan_hound 3.972460e-02 True
2011 879008229531029506 https://pbs.twimg.com/media/DDLdUrqXYAMOVzY.jpg 1 vizsla 0.960513 True miniature_pinscher 9.430650e-03 True American_Staffordshire_terrier 8.711300e-03 True
2012 879050749262655488 https://pbs.twimg.com/media/DDMD_phXoAQ1qf0.jpg 1 tabby 0.311861 False window_screen 1.691230e-01 False Egyptian_cat 1.329320e-01 False
2013 879376492567855104 https://pbs.twimg.com/media/DDQsQGFV0AAw6u9.jpg 1 tricycle 0.663601 False Labrador_retriever 3.349610e-02 True Pembroke 1.882660e-02 True
2014 879415818425184262 https://pbs.twimg.com/ext_tw_video_thumb/87941... 1 English_springer 0.383404 True Boston_bull 1.349670e-01 True Cardigan 1.104810e-01 True
2015 879492040517615616 https://pbs.twimg.com/media/DDSVWMvXsAEgmMK.jpg 1 German_short-haired_pointer 0.479896 True vizsla 1.243530e-01 True bath_towel 7.332020e-02 False
2016 879862464715927552 https://pbs.twimg.com/media/DDXmPrbWAAEKMvy.jpg 3 basset 0.813507 True beagle 1.466540e-01 True cocker_spaniel 9.485020e-03 True
2017 880095782870896641 https://pbs.twimg.com/media/DDa6ckbXgAAM1vV.jpg 1 miniature_pinscher 0.120298 True Rhodesian_ridgeback 1.063950e-01 True beagle 1.060730e-01 True
2018 880221127280381952 https://pbs.twimg.com/media/DDcscbXU0AIfDzs.jpg 1 Chihuahua 0.238525 True meerkat 1.042560e-01 False clumber 5.258030e-02 True
2019 880465832366813184 https://pbs.twimg.com/media/DDgK-J4XUAIEV9W.jpg 1 golden_retriever 0.913255 True Labrador_retriever 2.632860e-02 True cocker_spaniel 9.370820e-03 True
2020 880872448815771648 https://pbs.twimg.com/media/DDl8zzJW0AAisCJ.jpg 1 Pembroke 0.791416 True Norwich_terrier 6.139290e-02 True Chihuahua 3.372570e-02 True
2021 880935762899988482 https://pbs.twimg.com/media/DDm2Z5aXUAEDS2u.jpg 1 street_sign 0.251801 False umbrella 1.151230e-01 False traffic_light 6.953380e-02 False
2022 881268444196462592 https://pbs.twimg.com/media/DDrk-f9WAAI-WQv.jpg 1 tusker 0.473303 False Indian_elephant 2.456460e-01 False ibex 5.566070e-02 False
2023 881536004380872706 https://pbs.twimg.com/ext_tw_video_thumb/88153... 1 Samoyed 0.281463 True Angora 2.720660e-01 False Persian_cat 1.148540e-01 False
2024 881666595344535552 https://pbs.twimg.com/media/DDxPFwbWAAEbVVR.jpg 1 Saluki 0.529012 True Afghan_hound 2.500030e-01 True golden_retriever 1.607390e-01 True
2025 881906580714921986 https://pbs.twimg.com/media/DD0pWm9XcAAeSBL.jpg 1 Weimaraner 0.291539 True Chesapeake_Bay_retriever 2.789660e-01 True koala 1.270170e-01 False
2026 882045870035918850 https://pbs.twimg.com/media/DD2oCl2WAAEI_4a.jpg 1 web_site 0.949591 False dhole 1.732580e-02 False golden_retriever 6.940630e-03 True
2027 882268110199369728 https://pbs.twimg.com/media/DD5yKdPW0AArzX8.jpg 1 golden_retriever 0.762211 True Labrador_retriever 9.898490e-02 True cocker_spaniel 1.719950e-02 True
2028 882627270321602560 https://pbs.twimg.com/media/DD-40X3WAAAJPU5.jpg 1 Pembroke 0.542982 True Chihuahua 2.519880e-01 True Cardigan 1.076990e-01 True
2029 882762694511734784 https://pbs.twimg.com/media/DEAz_HHXsAA-p_z.jpg 1 Labrador_retriever 0.850050 True Chesapeake_Bay_retriever 7.425700e-02 True flat-coated_retriever 1.557940e-02 True
2030 882992080364220416 https://pbs.twimg.com/media/DEEEnIqXYAAiJh_.jpg 1 Eskimo_dog 0.466778 True Siberian_husky 4.060440e-01 True dingo 7.341440e-02 False
2031 883117836046086144 https://pbs.twimg.com/media/DEF2-_hXoAAs62q.jpg 2 golden_retriever 0.949562 True Labrador_retriever 4.594790e-02 True kuvasz 2.470940e-03 True
2032 883360690899218434 https://pbs.twimg.com/media/DEJT3FeXoAAtwUy.jpg 1 chow 0.987997 True Tibetan_mastiff 7.098720e-03 True Newfoundland 2.140330e-03 True
2033 883482846933004288 https://pbs.twimg.com/media/DELC9dZXUAADqUk.jpg 1 golden_retriever 0.943082 True Labrador_retriever 3.240900e-02 True kuvasz 5.500720e-03 True
2034 883838122936631299 https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg 1 Doberman 0.610946 True miniature_pinscher 2.996030e-01 True kelpie 6.302030e-02 True
2035 884162670584377345 https://pbs.twimg.com/media/DEUtQbzW0AUTv_o.jpg 1 German_shepherd 0.707046 True malinois 1.993960e-01 True Norwegian_elkhound 4.914760e-02 True
2036 884441805382717440 https://pbs.twimg.com/media/DEYrIZwWsAA2Wo5.jpg 1 Pembroke 0.993225 True Cardigan 3.216480e-03 True Chihuahua 2.080890e-03 True
2037 884562892145688576 https://pbs.twimg.com/media/DEaZQkfXUAEC7qB.jpg 1 pug 0.546406 True French_bulldog 4.042910e-01 True Brabancon_griffon 4.400190e-02 True
2038 884876753390489601 https://pbs.twimg.com/media/DEe2tZXXkAAwyX3.jpg 1 chow 0.822103 True Norwich_terrier 1.060750e-01 True Norfolk_terrier 3.734850e-02 True
2039 884925521741709313 https://pbs.twimg.com/media/DEfjEaNXkAAtPlj.jpg 1 Italian_greyhound 0.259916 True American_Staffordshire_terrier 1.984510e-01 True Staffordshire_bullterrier 1.277250e-01 True
2040 885167619883638784 https://pbs.twimg.com/media/DEi_N9qXYAAgEEw.jpg 4 malamute 0.812482 True Siberian_husky 7.171250e-02 True Eskimo_dog 5.576970e-02 True
2041 885311592912609280 https://pbs.twimg.com/media/C4bTH6nWMAAX_bJ.jpg 1 Labrador_retriever 0.908703 True seat_belt 5.709090e-02 False pug 1.193350e-02 True
2042 885528943205470208 https://pbs.twimg.com/media/DEoH3yvXgAAzQtS.jpg 1 pug 0.369275 True Labrador_retriever 2.658350e-01 True kuvasz 1.346970e-01 True
2043 885984800019947520 https://pbs.twimg.com/media/DEumeWWV0AA-Z61.jpg 1 Blenheim_spaniel 0.972494 True Shih-Tzu 6.630120e-03 True Bernese_mountain_dog 6.239150e-03 True
2044 886258384151887873 https://pbs.twimg.com/media/DEyfTG4UMAE4aE9.jpg 1 pug 0.943575 True shower_cap 2.528560e-02 False Siamese_cat 2.848920e-03 False
2045 886366144734445568 https://pbs.twimg.com/media/DE0BTnQUwAApKEH.jpg 1 French_bulldog 0.999201 True Chihuahua 3.611780e-04 True Boston_bull 7.556160e-05 True
2046 886680336477933568 https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg 1 convertible 0.738995 False sports_car 1.399520e-01 False car_wheel 4.417270e-02 False
2047 886736880519319552 https://pbs.twimg.com/media/DE5Se8FXcAAJFx4.jpg 1 kuvasz 0.309706 True Great_Pyrenees 1.861360e-01 True Dandie_Dinmont 8.634630e-02 True
2048 886983233522544640 https://pbs.twimg.com/media/DE8yicJW0AAAvBJ.jpg 2 Chihuahua 0.793469 True toy_terrier 1.435280e-01 True can_opener 3.225290e-02 False
2049 887101392804085760 https://pbs.twimg.com/media/DE-eAq6UwAA-jaE.jpg 1 Samoyed 0.733942 True Eskimo_dog 3.502950e-02 True Staffordshire_bullterrier 2.970470e-02 True
2050 887343217045368832 https://pbs.twimg.com/ext_tw_video_thumb/88734... 1 Mexican_hairless 0.330741 True sea_lion 2.756450e-01 False Weimaraner 1.342030e-01 True
2051 887473957103951883 https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg 2 Pembroke 0.809197 True Rhodesian_ridgeback 5.495000e-02 True beagle 3.891480e-02 True
2052 887517139158093824 https://pbs.twimg.com/ext_tw_video_thumb/88751... 1 limousine 0.130432 False tow_truck 2.917540e-02 False shopping_cart 2.632080e-02 False
2053 887705289381826560 https://pbs.twimg.com/media/DFHDQBbXgAEqY7t.jpg 1 basset 0.821664 True redbone 8.758150e-02 True Weimaraner 2.623640e-02 True
2054 888078434458587136 https://pbs.twimg.com/media/DFMWn56WsAAkA7B.jpg 1 French_bulldog 0.995026 True pug 9.319080e-04 True bull_mastiff 9.032110e-04 True
2055 888202515573088257 https://pbs.twimg.com/media/DFDw2tyUQAAAFke.jpg 2 Pembroke 0.809197 True Rhodesian_ridgeback 5.495000e-02 True beagle 3.891480e-02 True
2056 888554962724278272 https://pbs.twimg.com/media/DFTH_O-UQAACu20.jpg 3 Siberian_husky 0.700377 True Eskimo_dog 1.665110e-01 True malamute 1.114110e-01 True
2057 888804989199671297 https://pbs.twimg.com/media/DFWra-3VYAA2piG.jpg 1 golden_retriever 0.469760 True Labrador_retriever 1.841720e-01 True English_setter 7.348170e-02 True
2058 888917238123831296 https://pbs.twimg.com/media/DFYRgsOUQAARGhO.jpg 1 golden_retriever 0.714719 True Tibetan_mastiff 1.201840e-01 True Labrador_retriever 1.055060e-01 True
2059 889278841981685760 https://pbs.twimg.com/ext_tw_video_thumb/88927... 1 whippet 0.626152 True borzoi 1.947420e-01 True Saluki 2.735070e-02 True
2060 889531135344209921 https://pbs.twimg.com/media/DFg_2PVW0AEHN3p.jpg 1 golden_retriever 0.953442 True Labrador_retriever 1.383410e-02 True redbone 7.957750e-03 True
2061 889638837579907072 https://pbs.twimg.com/media/DFihzFfXsAYGDPR.jpg 1 French_bulldog 0.991650 True boxer 2.128640e-03 True Staffordshire_bullterrier 1.498180e-03 True
2062 889665388333682689 https://pbs.twimg.com/media/DFi579UWsAAatzw.jpg 1 Pembroke 0.966327 True Cardigan 2.735570e-02 True basenji 4.633230e-03 True
2063 889880896479866881 https://pbs.twimg.com/media/DFl99B1WsAITKsg.jpg 1 French_bulldog 0.377417 True Labrador_retriever 1.513170e-01 True muzzle 8.298110e-02 False
2064 890006608113172480 https://pbs.twimg.com/media/DFnwSY4WAAAMliS.jpg 1 Samoyed 0.957979 True Pomeranian 1.388350e-02 True chow 8.167480e-03 True
2065 890240255349198849 https://pbs.twimg.com/media/DFrEyVuW0AAO3t9.jpg 1 Pembroke 0.511319 True Cardigan 4.510380e-01 True Chihuahua 2.924820e-02 True
2066 890609185150312448 https://pbs.twimg.com/media/DFwUU__XcAEpyXI.jpg 1 Irish_terrier 0.487574 True Irish_setter 1.930540e-01 True Chesapeake_Bay_retriever 1.181840e-01 True
2067 890729181411237888 https://pbs.twimg.com/media/DFyBahAVwAAhUTd.jpg 2 Pomeranian 0.566142 True Eskimo_dog 1.784060e-01 True Pembroke 7.650690e-02 True
2068 890971913173991426 https://pbs.twimg.com/media/DF1eOmZXUAALUcq.jpg 1 Appenzeller 0.341703 True Border_collie 1.992870e-01 True ice_lolly 1.935480e-01 False
2069 891087950875897856 https://pbs.twimg.com/media/DF3HwyEWsAABqE6.jpg 1 Chesapeake_Bay_retriever 0.425595 True Irish_terrier 1.163170e-01 True Indian_elephant 7.690220e-02 False
2070 891327558926688256 https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 basset 0.555712 True English_springer 2.257700e-01 True German_short-haired_pointer 1.752190e-01 True
2071 891689557279858688 https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 paper_towel 0.170278 False Labrador_retriever 1.680860e-01 True spatula 4.083590e-02 False
2072 891815181378084864 https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012 True malamute 7.825300e-02 True kelpie 3.137890e-02 True
2073 892177421306343426 https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581 True Pekinese 9.064650e-02 True papillon 6.895690e-02 True
2074 892420643555336193 https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 orange 0.097049 False bagel 8.585110e-02 False banana 7.611000e-02 False
In [20]:
df_tweet_details
Out[20]:
tweet_id retweet_count favorite_count followers_count friends_count source retweeted_status
0 892420643555336193 8853 39467 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1 892177421306343426 6514 33819 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2 891815181378084864 4328 25461 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
3 891689557279858688 8964 42908 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
4 891327558926688256 9774 41048 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
5 891087950875897856 3261 20562 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
6 890971913173991426 2158 12041 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
7 890729181411237888 16716 56848 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
8 890609185150312448 4429 28226 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
9 890240255349198849 7711 32467 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
10 890006608113172480 7624 31166 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
11 889880896479866881 5156 28268 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
12 889665388333682689 8538 38818 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
13 889638837579907072 4735 27672 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
14 889531135344209921 2321 15359 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
15 889278841981685760 5637 25652 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
16 888917238123831296 4709 29611 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
17 888804989199671297 4559 26080 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
18 888554962724278272 3732 20290 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
19 888078434458587136 3653 22201 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
20 887705289381826560 5609 30779 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
21 887517139158093824 12082 46959 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
22 887473957103951883 18781 69871 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
23 887343217045368832 10737 34222 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
24 887101392804085760 6167 31061 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
25 886983233522544640 8084 35859 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
26 886736880519319552 3443 12306 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
27 886680336477933568 4610 22798 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
28 886366144734445568 3316 21524 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
29 886267009285017600 4 117 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
30 886258384151887873 6523 28469 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
31 886054160059072513 108 0 3200890 104 <a href="http://twitter.com/download/iphone" r... Retweet
32 885984800019947520 7097 33382 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
33 885528943205470208 6683 36689 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
34 885518971528720385 3899 20788 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
35 885311592912609280 19297 0 3200890 104 <a href="http://twitter.com/download/iphone" r... Retweet
36 885167619883638784 4556 22367 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
37 884925521741709313 16439 68152 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
38 884876753390489601 6096 28514 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
39 884562892145688576 5100 24765 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
40 884441805382717440 5856 27478 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
41 884247878851493888 21298 74423 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
42 884162670584377345 3128 20771 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
43 883838122936631299 3586 22349 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
44 883482846933004288 10407 46860 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
45 883360690899218434 3825 22986 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
46 883117836046086144 6949 37914 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
47 882992080364220416 4122 24445 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
48 882762694511734784 5134 28903 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
49 882627270321602560 6342 28382 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
50 882268110199369728 12118 45880 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
51 882045870035918850 5203 29900 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
52 881906580714921986 3533 24773 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
53 881666595344535552 11099 51522 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
54 881633300179243008 7 129 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
55 881536004380872706 16570 50199 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
56 881268444196462592 5358 23501 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
57 880935762899988482 2886 17346 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
58 880872448815771648 3989 21734 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
59 880465832366813184 6546 29075 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
60 880221127280381952 4436 27640 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
61 880095782870896641 4533 28150 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
62 879862464715927552 3642 22667 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
63 879674319642796034 10 315 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
64 879492040517615616 3323 23822 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
65 879415818425184262 45849 107956 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
66 879376492567855104 3261 17099 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
67 879130579576475649 7181 0 3200892 104 <a href="http://twitter.com/download/iphone" r... Retweet
68 879050749262655488 4941 23022 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
69 879008229531029506 2812 19317 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
70 878776093423087618 4319 19763 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
71 878604707211726852 7582 30931 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
72 878404777348136964 1349 0 3200892 104 <a href="http://twitter.com/download/iphone" r... Retweet
73 878316110768087041 6965 0 3200892 104 <a href="http://twitter.com/download/iphone" r... Retweet
74 878281511006478336 1349 7913 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
75 878057613040115712 7181 42876 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
76 877736472329191424 17300 71144 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
77 877611172832227328 83 0 3200892 104 <a href="http://twitter.com/download/iphone" r... Retweet
78 877556246731214848 3994 23258 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
79 877316821321428993 5414 27907 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
80 877201837425926144 5880 27755 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
81 876838120628539392 3506 21125 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
82 876537666061221889 4800 23869 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
83 876484053909872640 2511 19163 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
84 876120275196170240 4903 28490 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
85 875747767867523072 4497 25773 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
86 875144289856114688 5081 22185 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
87 875097192612077568 6342 27997 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
88 875021211251597312 4922 26022 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
89 874680097055178752 4875 28439 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
90 874434818259525634 15546 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
91 874296783580663808 4308 26651 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
92 874057562936811520 4125 23134 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
93 874012996292530176 11007 35501 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
94 873697596434513921 12518 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
95 873580283840344065 4143 24837 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
96 873337748698140672 1667 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
97 873213775632977920 1667 7467 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
98 872967104147763200 5669 28031 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
99 872820683541237760 3884 15029 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
100 872668790621863937 31 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
101 872620804844003328 3911 21309 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
102 872486979161796608 9429 41606 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
103 872261713294495745 6649 35085 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
104 872122724285648897 8549 35324 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
105 871879754684805121 11918 39090 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
106 871762521631449091 3678 20787 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
107 871515927908634625 3628 20730 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
108 871166179821445120 5991 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
109 871102520638267392 5764 21461 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
110 871032628920680449 3999 23255 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
111 870804317367881728 6393 33791 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
112 870726314365509632 3 121 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
113 870656317836468226 2817 12819 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
114 870374049280663552 27680 85011 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
115 870308999962521604 4384 22453 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
116 870063196459192321 8840 37771 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
117 869988702071779329 25661 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
118 869772420881756160 10663 43710 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
119 869702957897576449 6728 29116 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
120 869596645499047938 3327 16476 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
121 869227993411051520 4023 21112 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
122 868880397819494401 12518 55098 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
123 868639477480148993 2240 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
124 868622495443632128 6275 28295 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
125 868552278524837888 2240 10539 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
126 867900495410671616 4439 24964 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
127 867774946302451713 7788 35179 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
128 867421006826221569 2697 16755 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
129 867072653475098625 135 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
130 867051520902168576 8425 33420 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
131 866816280283807744 32883 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
132 866720684873056260 5168 20888 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
133 866686824827068416 3727 20070 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
134 866450705531457537 32883 106827 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
135 866334964761202691 15546 54720 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
136 866094527597207552 8952 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
137 865718153858494464 6008 26640 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
138 865359393868664832 5384 27530 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
139 865006731092295680 8209 29063 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
140 864873206498414592 9361 33651 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
141 864279568663928832 3266 15195 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
142 864197398364647424 9616 31459 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
143 863907417377173506 4441 21477 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
144 863553081350529029 4489 15935 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
145 863471782782697472 2687 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
146 863432100342583297 5664 24829 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
147 863427515083354112 105 2363 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
148 863079547188785154 1195 9094 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
149 863062471531167744 2687 8945 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
150 862831371563274240 5457 20011 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
151 862722525377298433 3809 17779 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
152 862457590147678208 5388 21492 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
153 862096992088072192 21840 66437 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
154 861769973181624320 37911 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
155 861383897657036800 11528 37744 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
156 861288531465048066 4479 18032 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
157 861005113778896900 4119 17538 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
158 860981674716409858 2334 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
159 860924035999428608 882 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
160 860563773140209665 2334 7878 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
161 860524505164394496 5698 24678 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
162 860276583193509888 3745 19154 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
163 860184849394610176 6295 17474 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
164 860177593139703809 33421 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
165 859924526012018688 4349 20021 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
166 859851578198683649 3780 16105 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
167 859607811541651456 1704 19476 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
168 859196978902773760 25661 75193 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
169 859074603037188101 14740 35553 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
170 858860390427611136 8805 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
171 858843525470990336 3771 16304 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
172 858471635011153920 5271 22640 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
173 858107933456039936 3154 16524 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
174 857989990357356544 2812 16952 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
175 857746408056729600 11524 36021 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
176 857393404942143489 1785 6236 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
177 857263160327368704 4934 21041 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
178 857214891891077121 20 242 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
179 857062103051644929 183 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
180 857029823797047296 4364 19910 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
181 856602993587888130 11633 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
182 856543823941562368 3131 17135 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
183 856526610513747968 2068 12446 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
184 856330835276025856 731 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
185 856288084350160898 17 545 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
186 856282028240666624 6841 29086 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
187 855862651834028034 27 320 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
188 855860136149123072 1058 4407 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
189 855857698524602368 2313 12498 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
190 855851453814013952 19196 47844 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
191 855818117272018944 5943 28056 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
192 855459453768019968 8987 31657 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
193 855245323840757760 6568 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
194 855138241867124737 50 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
195 854732716440526848 6690 24188 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
196 854482394044301312 7608 31131 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
197 854365224396361728 5159 20046 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
198 854120357044912130 8285 33911 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
199 854010172552949760 3433 17169 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
200 853760880890318849 6403 30414 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
201 853639147608842240 11265 37198 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
202 853299958564483072 3928 16508 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
203 852936405516943360 2243 0 3200892 104 <a href="http://twitter.com/download/iphone" r... Retweet
204 852912242202992640 2037 9658 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
205 852672615818899456 2388 15939 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
206 852553447878664193 3885 17492 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
207 852311364735569921 10961 35325 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
208 852226086759018497 7570 21378 3200891 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
209 852189679701164033 1741 12217 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
210 851953902622658560 10706 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
211 851861385021730816 23 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
212 851591660324737024 3819 17300 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
213 851464819735769094 7855 25944 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
214 851224888060895234 6350 22090 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
215 850753642995093505 10352 33348 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
216 850380195714523136 2915 13994 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
217 850333567704068097 367 3647 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
218 850145622816686080 4244 17519 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
219 850019790995546112 5459 21944 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
220 849776966551130114 8404 32390 3200799 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
221 849668094696017920 5513 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
222 849412302885593088 3487 17039 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
223 849336543269576704 2101 12240 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
224 849051919805034497 7396 32617 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
225 848690551926992896 4826 27104 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
226 848324959059550208 4037 20229 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
227 848213670039564288 832 8834 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
228 848212111729840128 3444 17618 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
229 847978865427394560 3652 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
230 847971574464610304 482 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
231 847962785489326080 5730 25296 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
232 847842811428974592 1522 5935 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
233 847617282490613760 468 7558 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
234 847606175596138505 3774 20208 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
235 847251039262605312 4800 22036 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
236 847157206088847362 6572 21588 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
237 847116187444137987 3583 23108 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
238 846874817362120707 4404 21685 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
239 846514051647705089 13076 48410 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
240 846505985330044928 3492 15304 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
241 846153765933735936 10226 34394 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
242 846139713627017216 10972 33188 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
243 846042936437604353 3224 17256 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
244 845812042753855489 9894 31737 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
245 845677943972139009 5365 27154 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
246 845459076796616705 15071 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
247 845397057150107648 2072 8241 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
248 845306882940190720 6039 25225 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
249 845098359547420673 8640 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
250 844979544864018432 2909 14738 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
251 844973813909606400 3617 16361 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
252 844704788403113984 11633 42022 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
253 844580511645339650 3533 17871 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
254 844223788422217728 2450 14753 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
255 843981021012017153 3285 16327 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
256 843856843873095681 5220 23211 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
257 843604394117681152 3081 18310 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
258 843235543001513987 6852 23315 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
259 842892208864923648 56625 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
260 842846295480000512 4023 16440 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
261 842765311967449089 1439 7321 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
262 842535590457499648 3937 19637 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
263 842163532590374912 6568 26569 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
264 842115215311396866 3386 15204 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
265 841833993020538882 17504 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
266 841680585030541313 8748 27854 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
267 841439858740625411 4168 13755 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
268 841320156043304961 6080 21402 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
269 841314665196081154 5312 17305 3200891 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
270 841077006473256960 5991 24926 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
271 840761248237133825 1972 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
272 840728873075638272 18285 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
273 840698636975636481 3 197 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
274 840696689258311684 1116 13377 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
275 840632337062862849 1972 9761 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
276 840370681858686976 5146 17918 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
277 840268004936019968 6497 20950 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
278 839990271299457024 2597 14640 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
279 839549326359670784 8805 29957 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
280 839290600511926273 158 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
281 839239871831150596 7422 29684 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
282 838952994649550848 4505 21289 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
283 838921590096166913 2357 12183 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
284 838916489579200512 38 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
285 838831947270979586 12643 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
286 838561493054533637 1504 11892 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
287 838476387338051585 5484 24664 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
288 838201503651401729 11525 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
289 838150277551247360 370 1824 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
290 838085839343206401 0 150 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
291 838083903487373313 3582 19183 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
292 837820167694528512 8952 37277 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
293 837482249356513284 495 4204 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
294 837471256429613056 2631 13967 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
295 837366284874571778 6005 23074 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
296 837110210464448512 2731 17480 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
297 837012587749474308 88 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
298 836989968035819520 2610 13879 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
299 836753516572119041 5237 21029 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
300 836677758902222849 2522 13782 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
301 836648853927522308 626 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
302 836397794269200385 31314 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
303 836380477523124226 3337 16037 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
304 836260088725786625 4850 23177 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
305 836001077879255040 4935 20924 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
306 835685285446955009 9327 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
307 835574547218894849 4121 19447 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
308 835536468978302976 1939 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
309 835309094223372289 24013 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
310 835297930240217089 3381 17847 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
311 835264098648616962 1939 8503 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
312 835246439529840640 83 2259 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
313 835172783151792128 6516 28552 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
314 835152434251116546 3443 24574 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
315 834931633769889797 1878 11838 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
316 834786237630337024 6159 22943 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
317 834574053763584002 2882 14993 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
318 834477809192075265 12224 0 3200890 104 <a href="http://twitter.com/download/iphone" r... Retweet
319 834458053273591808 1899 10512 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
320 834209720923721728 5476 22594 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
321 834167344700198914 4130 17194 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
322 834089966724603904 2427 10971 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
323 834086379323871233 2512 14296 3200890 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
324 833863086058651648 2729 14661 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
325 833826103416520705 3904 16728 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
326 833732339549220864 251 0 3200891 104 <a href="http://twitter.com/download/iphone" r... Retweet
327 833722901757046785 3636 22585 3200891 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
328 833479644947025920 2357 16258 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
329 833124694597443584 5513 22133 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
330 832998151111966721 2522 14549 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
331 832769181346996225 43 0 3200892 104 <a href="http://twitter.com/download/iphone" r... Retweet
332 832757312314028032 4127 18423 3200800 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
333 832682457690300417 3368 13017 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
334 832645525019123713 594 3195 3200892 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
335 832636094638288896 3220 17379 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
336 832397543355072512 2548 13126 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
337 832369877331693569 3652 18792 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
338 832273440279240704 2673 12385 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
339 832215909146226688 7069 0 3200892 104 <a href="http://twitter.com/download/iphone" r... Retweet
340 832215726631055365 10723 0 3200892 104 <a href="http://twitter.com/download/iphone" r... Retweet
341 832088576586297345 3 72 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
342 832040443403784192 11131 0 3200892 104 <a href="http://twitter.com/download/iphone" r... Retweet
343 832032802820481025 4746 13887 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
344 831939777352105988 7031 26404 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
345 831926988323639298 39 369 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
346 831911600680497154 7458 30380 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
347 831670449226514432 2059 11469 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
348 831650051525054464 2243 7908 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
349 831552930092285952 2632 9872 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
350 831322785565769729 1744 10042 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
351 831315979191906304 1264 7117 3200892 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
352 831309418084069378 2786 12819 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
353 831262627380748289 2350 13066 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
354 830956169170665475 1735 8735 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
355 830583320585068544 19297 73397 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
356 830173239259324417 6554 0 3200892 104 <a href="http://twitter.com/download/iphone" r... Retweet
357 830097400375152640 3455 10804 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
358 829878982036299777 5757 0 3200892 104 <a href="http://twitter.com/download/iphone" r... Retweet
359 829861396166877184 2243 13441 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
360 829501995190984704 12224 34913 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
361 829449946868879360 2329 11519 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
362 829374341691346946 10706 38074 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
363 829141528400556032 8530 26952 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
364 829011960981237760 18627 58302 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
365 828801551087042563 3901 0 3200892 104 <a href="http://twitter.com/download/iphone" r... Retweet
366 828770345708580865 6746 28085 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
367 828708714936930305 12882 40241 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
368 828650029636317184 1544 10467 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
369 828409743546925057 1305 6898 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
370 828408677031882754 1477 8398 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
371 828381636999917570 2554 13864 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
372 828376505180889089 1216 8112 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
373 828372645993398273 3344 13756 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
374 828361771580813312 195 2408 3200892 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
375 828046555563323392 3260 12923 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
376 828011680017821696 2451 11411 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
377 827933404142436356 5987 22180 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
378 827653905312006145 3433 16983 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
379 827600520311402496 1082 8143 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
380 827324948884643840 3510 17523 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
381 827228250799742977 13517 0 3200892 104 <a href="http://twitter.com/download/iphone" r... Retweet
382 827199976799354881 2579 11659 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
383 826958653328592898 5757 23767 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
384 826848821049180160 11878 40325 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
385 826615380357632002 4521 0 3200892 104 <a href="http://twitter.com/download/iphone" r... Retweet
386 826598799820865537 292 5637 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
387 826598365270007810 2709 11117 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
388 826476773533745153 4821 20275 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
389 826240494070030336 2965 14614 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
390 826204788643753985 1075 5361 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
391 826115272272650244 3599 17299 3200892 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
392 825876512159186944 2146 11525 3200893 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
393 825829644528148480 2848 14025 3200893 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
394 825535076884762624 19669 56413 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
395 825147591692263424 5244 20181 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
396 825120256414846976 1483 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
397 825026590719483904 1483 7020 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
398 824796380199809024 6288 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
399 824775126675836928 4069 16508 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
400 824663926340194305 1993 11113 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
401 824325613288833024 11848 12999 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
402 824297048279236611 4463 16625 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
403 824025158776213504 679 5255 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
404 823939628516474880 3123 11755 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
405 823719002937630720 12953 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
406 823699002998870016 2772 13826 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
407 823581115634085888 3031 14376 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
408 823333489516937216 31 777 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
409 823322678127919110 4637 17437 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
410 823269594223824897 11421 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
411 822975315408461824 3958 19139 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
412 822872901745569793 48265 132810 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
413 822859134160621569 2622 14576 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
414 822647212903690241 7390 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
415 822610361945911296 3423 16327 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
416 822489057087389700 7390 20083 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
417 822462944365645825 17209 31800 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
418 822244816520155136 11421 38832 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
419 822163064745328640 5571 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
420 821886076407029760 2692 12582 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
421 821813639212650496 3839 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
422 821765923262631936 1899 9317 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
423 821522889702862852 2030 8871 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
424 821421320206483457 6470 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
425 821407182352777218 5053 13075 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
426 821153421864615936 10 280 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
427 821149554670182400 2320 9718 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
428 821107785811234820 2487 10645 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
429 821044531881721856 2636 14021 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
430 820837357901512704 7733 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
431 820749716845686786 11525 34984 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
432 820690176645140481 3716 13518 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
433 820494788566847489 648 0 3200802 104 <a href="http://twitter.com/download/iphone" r... Retweet
434 820446719150292993 2980 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
435 820314633777061888 648 3706 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
436 820078625395449857 7246 21979 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
437 820013781606658049 1369 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
438 819952236453363712 1369 5927 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
439 819924195358416896 5607 14305 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
440 819711362133872643 3604 14916 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
441 819588359383371776 2271 10606 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
442 819347104292290561 1383 8008 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
443 819238181065359361 462 2550 3200894 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
444 819227688460238848 7733 25652 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
445 819015337530290176 42228 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
446 819015331746349057 21794 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
447 819006400881917954 21794 49960 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
448 819004803107983360 42228 95450 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
449 818646164899774465 24069 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
450 818627210458333184 8564 24597 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
451 818614493328580609 2982 10971 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
452 818588835076603904 7126 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
453 818536468981415936 2873 12127 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
454 818307523543449600 9366 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
455 818259473185828864 2621 12197 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
456 818145370475810820 3014 13671 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
457 817908911860748288 906 5356 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
458 817827839487737858 31314 57622 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
459 817777686764523521 3084 11901 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
460 817536400337801217 3505 13105 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
461 817502432452313088 3917 0 3200894 104 <a href="http://twitter.com/download/iphone" r... Retweet
462 817423860136083457 17504 38260 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
463 817415592588222464 1131 6267 3200894 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
464 817181837579653120 9907 0 3200895 104 <a href="http://twitter.com/download/iphone" r... Retweet
465 817171292965273600 2326 9690 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
466 817120970343411712 3011 13367 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
467 817056546584727552 1927 9517 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
468 816829038950027264 5496 0 3200895 104 <a href="http://twitter.com/download/iphone" r... Retweet
469 816816676327063552 2361 11071 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
470 816697700272001025 2545 10905 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
471 816450570814898180 9366 33961 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
472 816336735214911488 2269 9564 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
473 816091915477250048 2500 9927 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
474 816062466425819140 1207 0 3200895 104 <a href="http://twitter.com/download/iphone" r... Retweet
475 816014286006976512 6154 0 3200895 104 <a href="http://twitter.com/download/iphone" r... Retweet
476 815990720817401858 1207 5545 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
477 815966073409433600 9907 25057 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
478 815745968457060357 4797 0 3200895 104 <a href="http://twitter.com/download/iphone" r... Retweet
479 815736392542261248 2625 10937 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
480 815639385530101762 1918 9161 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
481 815390420867969024 4407 11467 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
482 814986499976527872 1505 8485 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
483 814638523311648768 3130 12511 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
484 814578408554463233 6750 0 3200895 104 <a href="http://twitter.com/download/iphone" r... Retweet
485 814530161257443328 2156 9629 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
486 814153002265309185 10080 32000 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
487 813944609378369540 3732 0 3200895 104 <a href="http://twitter.com/download/iphone" r... Retweet
488 813910438903693312 2194 10342 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
489 813812741911748608 16267 40402 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
490 813800681631023104 2060 9300 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
491 813217897535406080 8476 20783 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
492 813202720496779264 2090 10192 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
493 813187593374461952 5096 22085 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
494 813172488309972993 2236 10384 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
495 813157409116065792 2557 8588 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
496 813142292504645637 2728 9361 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
497 813130366689148928 513 4968 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
498 813127251579564032 3652 13242 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
499 813112105746448384 3225 11515 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
500 813096984823349248 4207 11694 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
501 813081950185472002 3220 10989 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
502 813066809284972545 2276 8865 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
503 813051746834595840 8503 23337 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
504 812781120811126785 2191 8380 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
505 812747805718642688 8067 0 3200895 104 <a href="http://twitter.com/download/iphone" r... Retweet
506 812709060537683968 1665 7373 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
507 812503143955202048 1424 6787 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
508 812466873996607488 2231 8900 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
509 812372279581671427 4252 15224 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
510 811985624773361665 1647 8102 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
511 811744202451197953 1884 8429 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
512 811647686436880384 872 6215 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
513 811627233043480576 3650 14265 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
514 811386762094317568 7444 23302 3200895 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
515 810984652412424192 1655 5927 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
516 810896069567610880 2090 10093 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
517 810657578271330305 3057 12192 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
518 810284430598270976 13369 39640 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
519 810254108431155201 3901 16380 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
520 809920764300447744 4521 17250 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
521 809808892968534016 5711 0 3200896 104 <a href="http://twitter.com/download/iphone" r... Retweet
522 809448704142938112 1696 7727 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
523 809220051211603969 6554 22246 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
524 809084759137812480 4046 14685 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
525 808838249661788160 3536 11271 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
526 808733504066486276 2509 8784 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
527 808501579447930884 3007 12595 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
528 808344865868283904 24069 47281 3200896 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
529 808134635716833280 6961 0 3200896 104 <a href="http://twitter.com/download/iphone" r... Retweet
530 808106460588765185 2525 9701 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
531 808001312164028416 4098 14015 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
532 807621403335917568 4288 16236 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
533 807106840509214720 56625 107015 3200896 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
534 807059379405148160 8521 0 3200897 104 <a href="http://twitter.com/download/iphone" r... Retweet
535 807010152071229440 4418 14514 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
536 806629075125202948 37911 75639 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
537 806620845233815552 6426 0 3200897 104 <a href="http://twitter.com/download/iphone" r... Retweet
538 806576416489959424 2230 5370 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
539 806542213899489280 2752 11363 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
540 806242860592926720 13616 0 3200897 104 <a href="http://twitter.com/download/iphone" r... Retweet
541 806219024703037440 1388 7145 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
542 805958939288408065 6238 0 3200897 104 <a href="http://twitter.com/download/iphone" r... Retweet
543 805932879469572096 2209 9178 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
544 805826884734976000 2132 7335 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
545 805823200554876929 9374 0 3200897 104 <a href="http://twitter.com/download/iphone" r... Retweet
546 805520635690676224 1905 6368 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
547 805487436403003392 2929 9773 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
548 805207613751304193 1972 8680 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
549 804738756058218496 4480 15326 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
550 804475857670639616 2355 6886 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
551 804413760345620481 3712 0 3200897 104 <a href="http://twitter.com/download/iphone" r... Retweet
552 804026241225523202 18876 49774 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
553 803773340896923648 3220 11203 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
554 803692223237865472 8689 0 3200897 104 <a href="http://twitter.com/download/iphone" r... Retweet
555 803638050916102144 4828 12270 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
556 803380650405482500 2169 8601 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
557 803321560782307329 6221 0 3200897 104 <a href="http://twitter.com/download/iphone" r... Retweet
558 803276597545603072 2887 11207 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
559 802952499103731712 2336 10085 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
560 802624713319034886 3403 0 3200897 104 <a href="http://twitter.com/download/iphone" r... Retweet
561 802600418706604034 1714 7938 3200897 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
562 802572683846291456 2926 9959 3200897 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
563 802323869084381190 6808 18124 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
564 802265048156610565 1573 7039 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
565 802247111496568832 5247 0 3200898 104 <a href="http://twitter.com/download/iphone" r... Retweet
566 802239329049477120 3040 10132 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
567 802185808107208704 314 0 3200898 104 <a href="http://twitter.com/download/iphone" r... Retweet
568 801958328846974976 1992 8608 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
569 801854953262350336 275 1958 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
570 801538201127157760 2391 9141 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
571 801285448605831168 960 6802 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
572 801167903437357056 6961 27386 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
573 801127390143516673 4627 0 3200898 104 <a href="http://twitter.com/download/iphone" r... Retweet
574 801115127852503040 2429 8992 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
575 800859414831898624 113 778 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
576 800855607700029440 1889 0 3200898 104 <a href="http://twitter.com/download/iphone" r... Retweet
577 800751577355128832 3214 11701 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
578 800513324630806528 3495 14685 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
579 800459316964663297 2489 10538 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
580 800443802682937345 5068 0 3200898 104 <a href="http://twitter.com/download/iphone" r... Retweet
581 800388270626521089 3265 12456 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
582 800188575492947969 4581 0 3200898 104 <a href="http://twitter.com/download/iphone" r... Retweet
583 800141422401830912 2980 17092 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
584 800018252395122689 15351 31768 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
585 799774291445383169 5488 0 3200898 104 <a href="http://twitter.com/download/iphone" r... Retweet
586 799757965289017345 2506 9390 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
587 799422933579902976 2213 8965 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
588 799308762079035393 6478 0 3200898 104 <a href="http://twitter.com/download/iphone" r... Retweet
589 799297110730567681 3227 11065 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
590 799063482566066176 2863 9058 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
591 798933969379225600 5203 14712 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
592 798925684722855936 1663 8246 3200898 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
593 798705661114773508 7724 0 3200898 104 <a href="http://twitter.com/download/iphone" r... Retweet
594 798701998996647937 9126 0 3200898 104 <a href="http://twitter.com/download/iphone" r... Retweet
595 798697898615730177 7602 0 3200898 104 <a href="http://twitter.com/download/iphone" r... Retweet
596 798694562394996736 5812 0 3200898 104 <a href="http://twitter.com/download/iphone" r... Retweet
597 798686750113755136 2702 0 3200898 104 <a href="http://twitter.com/download/iphone" r... Retweet
598 798682547630837760 5515 0 3200899 104 <a href="http://twitter.com/download/iphone" r... Retweet
599 798673117451325440 6485 0 3200899 104 <a href="http://twitter.com/download/iphone" r... Retweet
600 798665375516884993 4519 0 3200899 104 <a href="http://twitter.com/download/iphone" r... Retweet
601 798644042770751489 2153 0 3200899 104 <a href="http://twitter.com/download/iphone" r... Retweet
602 798628517273620480 2272 0 3200899 104 <a href="http://twitter.com/download/iphone" r... Retweet
603 798585098161549313 6618 0 3200900 104 <a href="http://twitter.com/download/iphone" r... Retweet
604 798576900688019456 6871 0 3200900 104 <a href="http://twitter.com/download/iphone" r... Retweet
605 798340744599797760 3924 0 3200900 104 <a href="http://twitter.com/download/iphone" r... Retweet
606 798209839306514432 2954 11548 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
607 797971864723324932 3652 13018 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
608 797545162159308800 5656 16198 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
609 797236660651966464 7726 22328 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
610 797165961484890113 32 256 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
611 796904159865868288 10411 0 3200900 104 <a href="http://twitter.com/download/iphone" r... Retweet
612 796865951799083009 2198 8564 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
613 796759840936919040 3562 13256 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
614 796563435802726400 8536 0 3200900 104 <a href="http://twitter.com/download/iphone" r... Retweet
615 796484825502875648 2042 8472 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
616 796387464403357696 4861 12334 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
617 796177847564038144 16628 0 3200900 104 <a href="http://twitter.com/download/iphone" r... Retweet
618 796149749086875649 16628 36177 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
619 796125600683540480 2079 5511 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
620 796116448414461957 2813 10139 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
621 796080075804475393 2703 9469 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
622 796031486298386433 4284 12071 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
623 795464331001561088 27728 55683 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
624 795400264262053889 3323 11270 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
625 795076730285391872 6288 18139 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
626 794983741416415232 3942 0 3200900 104 <a href="http://twitter.com/download/iphone" r... Retweet
627 794926597468000259 2697 11492 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
628 794355576146903043 12014 0 3200900 104 <a href="http://twitter.com/download/iphone" r... Retweet
629 794332329137291264 3088 10686 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
630 794205286408003585 3895 10314 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
631 793962221541933056 5711 18910 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
632 793845145112371200 2187 10295 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
633 793614319594401792 3661 0 3200900 104 <a href="http://twitter.com/download/iphone" r... Retweet
634 793601777308463104 1908 8926 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
635 793500921481273345 2786 11953 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
636 793286476301799424 10723 27597 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
637 793271401113350145 2763 9677 3200900 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
638 793256262322548741 9714 22350 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
639 793241302385262592 3812 11780 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
640 793226087023144960 3338 11001 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
641 793210959003287553 3301 9997 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
642 793195938047070209 6547 17063 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
643 793180763617361921 2310 7740 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
644 793165685325201412 3238 10478 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
645 793150605191548928 1984 6909 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
646 793135492858580992 2893 7214 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
647 793120401413079041 4551 14202 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
648 792913359805018113 4715 16063 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
649 792883833364439040 4964 12666 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
650 792773781206999040 1963 8209 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
651 792394556390137856 4998 15128 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
652 792050063153438720 2088 8029 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
653 791821351946420224 24514 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
654 791784077045166082 11271 0 3200809 104 <a href="http://twitter.com/download/iphone" r... Retweet
655 791780927877898241 4432 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
656 791774931465953280 21156 37818 3200901 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
657 791672322847637504 3661 13129 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
658 791406955684368384 4797 14670 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
659 791312159183634433 2963 9841 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
660 791026214425268224 4858 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
661 790987426131050500 2483 11089 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
662 790946055508652032 5496 18601 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
663 790723298204217344 2704 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
664 790698755171364864 2203 9158 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
665 790581949425475584 8183 22473 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
666 790337589677002753 2167 8740 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
667 790277117346975746 3732 14081 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
668 790227638568808452 4190 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
669 789986466051088384 2704 10369 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
670 789960241177853952 4839 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
671 789903600034189313 4858 11673 3200901 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
672 789628658055020548 2080 8448 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
673 789599242079838210 2279 7620 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
674 789530877013393408 3942 13188 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
675 789314372632018944 2666 9615 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
676 789280767834746880 5747 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
677 789268448748703744 3014 10196 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
678 789137962068021249 3244 10875 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
679 788908386943430656 14409 30653 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
680 788765914992902144 12014 30658 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
681 788552643979468800 8407 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
682 788412144018661376 5990 16060 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
683 788178268662984705 2488 8100 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
684 788150585577050112 1510 6865 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
685 788070120937619456 3952 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
686 788039637453406209 1535 6867 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
687 787810552592695296 3540 9717 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
688 787717603741622272 3240 11416 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
689 787397959788929025 3300 12120 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
690 787322443945877504 2032 8726 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
691 787111942498508800 7798 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
692 786963064373534720 9327 29725 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
693 786729988674449408 2827 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
694 786709082849828864 7069 20296 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
695 786664955043049472 2996 11957 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
696 786595970293370880 3601 10497 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
697 786363235746385920 4072 12189 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
698 786286427768250368 3352 8930 3200901 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
699 786233965241827333 5571 17178 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
700 786051337297522688 179 1614 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
701 786036967502913536 8237 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
702 785927819176054784 3652 12696 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
703 785872687017132033 2130 7489 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
704 785639753186217984 2561 8735 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
705 785533386513321988 2334 10183 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
706 785515384317313025 1477 6800 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
707 785264754247995392 1911 8128 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
708 785170936622350336 5639 13491 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
709 784826020293709826 3712 11310 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
710 784517518371221505 2970 10039 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
711 784431430411685888 1491 6329 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
712 784183165795655680 9374 22513 3200901 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
713 784057939640352768 12953 33505 3200901 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
714 783839966405230592 12643 33689 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
715 783821107061198850 2269 8209 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
716 783695101801398276 3737 11650 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
717 783466772167098368 2608 9468 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
718 783391753726550016 6441 18908 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
719 783347506784731136 6533 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
720 783334639985389568 13616 32651 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
721 783085703974514689 2565 9112 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
722 782969140009107456 8521 26949 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
723 782747134529531904 1604 8310 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
724 782722598790725632 6238 19250 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
725 782598640137187329 2184 8694 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
726 782305867769217024 6470 18630 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
727 782021823840026624 7236 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
728 781955203444699136 3920 12357 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
729 781661882474196992 3129 11634 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
730 781655249211752448 1314 4466 3200901 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
731 781524693396357120 6426 23163 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
732 781308096455073793 2961 7973 3200901 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
733 781251288990355457 2458 9428 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
734 781163403222056960 3168 10895 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
735 780931614150983680 8536 24192 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
736 780858289093574656 2328 8033 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
737 780800785462489090 1505 6141 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
738 780601303617732608 3839 13525 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
739 780543529827336192 2032 7040 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
740 780496263422808064 4319 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
741 780476555013349377 136 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
742 780459368902959104 1224 5892 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
743 780192070812196864 2589 9712 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
744 780092040432480260 2655 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
745 780074436359819264 5815 13723 3200901 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
746 779834332596887552 8237 21252 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
747 779377524342161408 3613 9831 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
748 779124354206535695 21324 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
749 779123168116150273 4207 13206 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
750 779056095788752897 5247 16500 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
751 778990705243029504 8437 22342 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
752 778774459159379968 11550 0 3200901 104 <a href="http://twitter.com/download/iphone" r... Retweet
753 778764940568104960 426 955 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
754 778748913645780993 1562 7717 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
755 778650543019483137 1729 6430 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
756 778624900596654080 1176 5177 3200901 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
757 778408200802557953 5023 15135 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
758 778396591732486144 14198 0 3200902 104 <a href="http://twitter.com/download/iphone" r... Retweet
759 778383385161035776 1271 6515 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
760 778286810187399168 3836 11576 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
761 778039087836069888 3065 9417 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
762 778027034220126208 1885 7320 3200810 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
763 777953400541634568 4080 0 3200902 104 <a href="http://twitter.com/download/iphone" r... Retweet
764 777885040357281792 1893 7078 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
765 777684233540206592 3403 12518 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
766 777641927919427584 4947 0 3200902 104 <a href="http://twitter.com/download/iphone" r... Retweet
767 777621514455814149 2910 9742 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
768 777189768882946048 4999 15921 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
769 776819012571455488 15839 0 3200902 104 <a href="http://twitter.com/download/iphone" r... Retweet
770 776813020089548800 1405 5444 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
771 776477788987613185 3249 9858 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
772 776249906839351296 10673 0 3200902 104 <a href="http://twitter.com/download/iphone" r... Retweet
773 776218204058357768 18497 33345 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
774 776201521193218049 2919 10681 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
775 776113305656188928 5068 13102 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
776 776088319444877312 179 2045 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
777 775898661951791106 17621 0 3200902 104 <a href="http://twitter.com/download/iphone" r... Retweet
778 775842724423557120 3116 13022 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
779 775733305207554048 4627 15413 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
780 775729183532220416 5302 14361 3200902 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
781 775364825476165632 3472 8295 3200903 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
782 775350846108426240 4532 11309 3200903 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
783 775096608509886464 9220 0 3200903 104 <a href="http://twitter.com/download/iphone" r... Retweet
784 775085132600442880 5488 17281 3200903 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
785 774757898236878852 2035 9462 3200903 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
786 774639387460112384 2013 7508 3200904 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
787 774314403806253056 6478 24167 3200904 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
788 773985732834758656 4492 11925 3200904 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
789 773922284943896577 1999 7110 3200904 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
790 773704687002451968 1891 7317 3200904 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
791 773670353721753600 1501 5935 3200904 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
792 773547596996571136 7126 24553 3200904 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
793 773336787167145985 5912 0 3200904 104 <a href="http://twitter.com/download/iphone" r... Retweet
794 773308824254029826 8640 25846 3200904 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
795 773247561583001600 3699 10414 3200904 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
796 773191612633579521 4736 11117 3200904 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
797 772877495989305348 4501 9555 3200904 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
798 772826264096874500 2669 8842 3200904 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
799 772615324260794368 3914 0 3200904 104 <a href="http://twitter.com/download/iphone" r... Retweet
800 772581559778025472 1968 7192 3200904 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
801 772193107915964416 1612 6665 3200904 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
802 772152991789019136 1300 4181 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
803 772117678702071809 848 4165 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
804 772114945936949249 546 3005 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
805 772102971039580160 1065 4448 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
806 771908950375665664 2181 7298 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
807 771770456517009408 3924 13356 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
808 771500966810099713 3018 9167 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
809 771380798096281600 5912 11746 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
810 771171053431250945 8705 0 3200905 104 <a href="http://twitter.com/download/iphone" r... Retweet
811 771136648247640064 3357 10223 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
812 771102124360998913 1663 6898 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
813 771014301343748096 1782 7032 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
814 770787852854652928 1415 5498 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
815 770772759874076672 1626 5749 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
816 770743923962707968 52360 0 3200905 104 <a href="http://twitter.com/download/iphone" r... Retweet
817 770655142660169732 2013 8130 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
818 770414278348247044 2390 6987 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
819 770293558247038976 1718 6923 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
820 770093767776997377 3520 0 3200905 104 <a href="http://twitter.com/download/iphone" r... Retweet
821 770069151037685760 2651 8385 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
822 769940425801170949 11131 34948 3200905 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
823 769695466921623552 1926 7101 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
824 769335591808995329 8830 0 3200906 104 <a href="http://twitter.com/download/iphone" r... Retweet
825 769212283578875904 1969 5980 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
826 768970937022709760 7574 16017 3200906 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
827 768909767477751808 3129 0 3200906 104 <a href="http://twitter.com/download/iphone" r... Retweet
828 768855141948723200 1034 4660 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
829 768609597686943744 1382 4580 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
830 768596291618299904 1473 5592 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
831 768554158521745409 6719 0 3200906 104 <a href="http://twitter.com/download/iphone" r... Retweet
832 768473857036525572 3958 15110 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
833 768193404517830656 4080 12157 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
834 767884188863397888 1634 5309 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
835 767754930266464257 6221 17814 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
836 767500508068192258 2688 8295 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
837 767191397493538821 4406 13643 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
838 767122157629476866 3261 11227 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
839 766864461642756096 6521 0 3200906 104 <a href="http://twitter.com/download/iphone" r... Retweet
840 766793450729734144 1565 5650 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
841 766714921925144576 438 2872 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
842 766693177336135680 918 4484 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
843 766423258543644672 1825 6671 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
844 766313316352462849 2166 7493 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
845 766078092750233600 2970 0 3200906 104 <a href="http://twitter.com/download/iphone" r... Retweet
846 766069199026450432 1003 4765 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
847 766008592277377025 571 4149 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
848 765719909049503744 2475 8021 3200906 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
849 765669560888528897 1407 5760 3200907 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
850 765395769549590528 3127 20539 3200907 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
851 765371061932261376 2475 7842 3200907 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
852 765222098633691136 3914 12902 3200907 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
853 764857477905154048 2029 7099 3200907 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
854 764259802650378240 1745 6718 3200907 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
855 763956972077010945 61 812 3200907 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
856 763837565564780549 4858 14041 3200907 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
857 763183847194451968 1702 6004 3200907 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
858 763167063695355904 3484 0 3200907 104 <a href="http://twitter.com/download/iphone" r... Retweet
859 763103485927849985 2602 8163 3200907 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
860 762699858130116608 4190 13518 3200907 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
861 762471784394268675 7612 12571 3200907 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
862 762464539388485633 4839 11503 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
863 762316489655476224 1298 5350 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
864 762035686371364864 17919 35400 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
865 761976711479193600 2310 5992 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
866 761750502866649088 4535 0 3200816 104 <a href="http://twitter.com/download/iphone" r... Retweet
867 761745352076779520 979 4707 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
868 761672994376806400 33421 55016 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
869 761599872357261312 1336 4578 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
870 761371037149827077 20500 0 3200908 104 <a href="http://twitter.com/download/iphone" r... Retweet
871 761334018830917632 1669 5792 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
872 761292947749015552 1265 4957 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
873 761227390836215808 1775 5908 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
874 761004547850530816 3952 12482 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
875 760893934457552897 1104 4228 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
876 760656994973933572 2210 7343 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
877 760641137271070720 1481 5485 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
878 760539183865880579 4168 8399 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
879 760521673607086080 1608 4681 3200908 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
880 760290219849637889 13140 29618 3200908 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
881 760252756032651264 995 4338 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
882 760190180481531904 2079 6334 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
883 760153949710192640 38 0 3200908 104 <a href="http://twitter.com/download/iphone" r... Retweet
884 759943073749200896 2382 6581 3200908 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
885 759923798737051648 6521 16284 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
886 759846353224826880 2265 7433 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
887 759793422261743616 2173 6620 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
888 759566828574212096 24319 0 3200908 104 <a href="http://twitter.com/download/iphone" r... Retweet
889 759557299618865152 1341 5202 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
890 759447681597108224 2827 9418 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
891 759446261539934208 561 1846 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
892 759197388317847553 2221 6725 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
893 759159934323924993 1359 0 3200908 104 <a href="http://twitter.com/download/iphone" r... Retweet
894 759099523532779520 4813 16101 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
895 759047813560868866 2302 7227 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
896 758854675097526272 1027 3904 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
897 758828659922702336 4376 12376 3200908 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
898 758740312047005698 1824 6339 3200942 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
899 758474966123810816 1132 4227 3200942 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
900 758467244762497024 2539 5316 3200942 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
901 758405701903519748 2204 5756 3200942 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
902 758355060040593408 1245 3797 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
903 758099635764359168 11550 21302 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
904 758041019896193024 433 3001 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
905 757741869644341248 3710 7613 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
906 757729163776290825 9299 0 3200943 104 <a href="http://twitter.com/download/iphone" r... Retweet
907 757725642876129280 1391 5022 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
908 757611664640446465 1272 5026 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
909 757597904299253760 336 0 3200943 104 <a href="http://twitter.com/download/iphone" r... Retweet
910 757596066325864448 1219 4808 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
911 757400162377592832 7759 16743 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
912 757393109802180609 2009 6462 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
913 757354760399941633 1637 4995 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
914 756998049151549440 2271 6923 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
915 756939218950160384 2295 7342 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
916 756651752796094464 1511 5612 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
917 756526248105566208 4169 11506 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
918 756303284449767430 1231 4359 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
919 756288534030475264 15071 28519 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
920 756275833623502848 1738 7114 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
921 755955933503782912 3285 8092 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
922 755206590534418437 6148 18212 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
923 755110668769038337 12621 23446 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
924 754874841593970688 9193 0 3200943 104 <a href="http://twitter.com/download/iphone" r... Retweet
925 754856583969079297 2870 7616 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
926 754747087846248448 591 2854 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
927 754482103782404096 2220 5852 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
928 754449512966619136 846 4147 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
929 754120377874386944 2670 8655 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
930 754011816964026368 4079 9726 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
931 753655901052166144 2492 6458 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
932 753420520834629632 4071 8731 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
933 753398408988139520 2186 6384 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
934 753375668877008896 2655 8411 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
935 753298634498793472 6620 0 3200943 104 <a href="http://twitter.com/download/iphone" r... Retweet
936 753294487569522689 1191 3758 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
937 753039830821511168 24013 41080 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
938 753026973505581056 1109 4283 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
939 752932432744185856 7798 13970 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
940 752917284578922496 1790 7592 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
941 752701944171524096 3291 0 3200943 104 <a href="http://twitter.com/download/iphone" r... Retweet
942 752682090207055872 1846 6642 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
943 752660715232722944 1794 4878 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
944 752568224206688256 2605 6140 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
945 752519690950500352 3917 8157 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
946 752334515931054080 1263 4238 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
947 752309394570878976 18963 0 3200943 104 <a href="http://twitter.com/download/iphone" r... Retweet
948 752173152931807232 2106 6569 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
949 751950017322246144 1060 3415 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
950 751937170840121344 1530 5770 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
951 751830394383790080 2227 6428 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
952 751793661361422336 3320 6479 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
953 751598357617971201 3440 8699 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
954 751583847268179968 1265 4849 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
955 751538714308972544 1445 5547 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
956 751456908746354688 1127 3516 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
957 751251247299190784 6695 13791 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
958 751205363882532864 2086 6948 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
959 751132876104687617 1480 5610 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
960 750868782890057730 1595 5306 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
961 750719632563142656 5747 14621 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
962 750506206503038976 1316 4934 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
963 750429297815552001 4947 14569 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
964 750383411068534784 1309 5005 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
965 750381685133418496 39 758 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
966 750147208377409536 1095 3409 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
967 750132105863102464 1440 3990 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
968 750117059602808832 1466 4740 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
969 750101899009982464 959 3344 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
970 750086836815486976 613 2383 3200943 104 <a href="https://about.twitter.com/products/tw... Original Tweet
971 750071704093859840 3802 8653 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
972 750056684286914561 1011 3444 3200943 104 <a href="https://about.twitter.com/products/tw... Original Tweet
973 750041628174217216 703 3502 3200943 104 <a href="https://about.twitter.com/products/tw... Original Tweet
974 750026558547456000 888 2986 3200943 104 <a href="https://about.twitter.com/products/tw... Original Tweet
975 750011400160841729 1035 3568 3200943 104 <a href="https://about.twitter.com/products/tw... Original Tweet
976 749996283729883136 919 3331 3200943 104 <a href="https://about.twitter.com/products/tw... Original Tweet
977 749981277374128128 2772 5569 3200943 104 <a href="https://about.twitter.com/products/tw... Original Tweet
978 749774190421639168 1493 5114 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
979 749417653287129088 1904 6721 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
980 749403093750648834 622 2892 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
981 749395845976588288 3951 9488 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
982 749317047558017024 2509 6076 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
983 749075273010798592 2360 6353 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
984 749064354620928000 1714 5277 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
985 749036806121881602 896 3425 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
986 748977405889503236 3759 11235 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
987 748932637671223296 2564 6461 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
988 748705597323898880 1067 3047 3200943 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
989 748699167502000129 1814 5213 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
990 748692773788876800 1504 4659 3200851 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
991 748575535303884801 2272 6696 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
992 748568946752774144 776 2411 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
993 748346686624440324 1413 5735 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
994 748337862848962560 4701 8462 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
995 748324050481647620 867 4078 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
996 748307329658011649 810 4027 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
997 748220828303695873 8825 15549 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
998 747963614829678593 2444 6397 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
999 747933425676525569 2894 7310 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1000 747885874273214464 1116 3243 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1001 747844099428986880 851 3084 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1002 747816857231626240 1316 5346 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1003 747651430853525504 179 1520 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1004 747648653817413632 6614 14182 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1005 747600769478692864 619 2545 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1006 747594051852075008 1205 4065 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1007 747512671126323200 1803 6110 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1008 747461612269887489 1169 4249 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1009 747439450712596480 2184 5965 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1010 747242308580548608 3257 0 3200943 104 <a href="http://twitter.com/download/iphone" r... Retweet
1011 747219827526344708 1791 5792 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1012 747204161125646336 1038 3722 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1013 747103485104099331 4548 10534 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1014 746906459439529985 336 3168 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1015 746872823977771008 2429 6593 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1016 746818907684614144 1944 5807 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1017 746790600704425984 1806 5345 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1018 746757706116112384 4432 10520 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1019 746726898085036033 2037 6648 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1020 746542875601690625 2104 5520 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1021 746521445350707200 1110 0 3200943 104 <a href="http://twitter.com/download/iphone" r... Retweet
1022 746507379341139972 1226 5094 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1023 746369468511756288 1854 6637 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1024 746131877086527488 2511 7565 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1025 746056683365994496 931 3904 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1026 745789745784041472 1207 4437 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1027 745712589599014916 2636 7652 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1028 745433870967832576 2894 7824 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1029 745422732645535745 2768 9412 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1030 745314880350101504 3131 7863 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1031 745074613265149952 3976 8605 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1032 745057283344719872 2585 7945 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1033 744995568523612160 716 3277 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1034 744971049620602880 3042 8652 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1035 744709971296780288 1771 6150 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1036 744334592493166593 2412 7443 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1037 744234799360020481 79515 131075 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1038 744223424764059648 424 1868 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1039 743980027717509120 1231 4551 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1040 743895849529389061 1087 3999 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1041 743835915802583040 2387 0 3200943 104 <a href="http://twitter.com/download/iphone" r... Retweet
1042 743609206067040256 1560 4917 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1043 743595368194129920 7445 20275 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1044 743545585370791937 1066 3863 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1045 743510151680958465 4185 8671 3200943 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
1046 743253157753532416 1366 4624 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1047 743222593470234624 2164 6792 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1048 743210557239623680 1560 4215 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1049 742534281772302336 4011 7744 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1050 742528092657332225 2245 4878 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1051 742465774154047488 4382 7916 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1052 742423170473463808 4319 10812 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1053 742385895052087300 2266 7457 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1054 742161199639494656 1547 4743 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1055 742150209887731712 1783 5661 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1056 741793263812808706 1698 4982 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1057 741743634094141440 3144 8945 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1058 741438259667034112 937 4026 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1059 741303864243200000 3650 9631 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1060 741099773336379392 6247 10997 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1061 741067306818797568 3520 10342 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1062 740995100998766593 3154 7018 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1063 740711788199743490 1062 3736 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1064 740699697422163968 888 3101 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1065 740676976021798912 7724 19881 3200851 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1066 740373189193256964 9220 20648 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1067 740365076218183684 495 2727 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1068 740359016048689152 967 3610 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1069 740214038584557568 2220 7335 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1070 739979191639244800 6719 21898 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1071 739932936087216128 1217 4443 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1072 739844404073074688 966 4138 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1073 739623569819336705 1547 4185 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1074 739606147276148736 1876 5897 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1075 739544079319588864 24319 43694 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1076 739485634323156992 3309 7887 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1077 739238157791694849 52360 75163 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1078 738891149612572673 6 115 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1079 738885046782832640 1283 4127 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1080 738883359779196928 917 3661 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1081 738537504001953792 1759 5575 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1082 738402415918125056 955 3599 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1083 738184450748633089 1360 4727 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1084 738166403467907072 3828 9635 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1085 738156290900254721 748 2768 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1086 737826014890496000 2006 5757 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1087 737800304142471168 3904 10943 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1088 737678689543020544 1509 5528 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1089 737445876994609152 5048 11302 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1090 737322739594330112 907 3953 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1091 737310737551491075 8329 16040 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1092 736736130620620800 1972 4736 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1093 736392552031657984 8407 19450 3200943 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1094 736365877722001409 1408 4367 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1095 736225175608430592 3115 8901 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1096 736010884653420544 3355 8652 3200943 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1097 735991953473572864 1283 3934 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1098 735648611367784448 1237 4397 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1099 735635087207878657 2659 6776 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1100 735274964362878976 4707 9629 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1101 735256018284875776 993 3675 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1102 735137028879360001 1092 3428 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1103 734912297295085568 572 2993 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1104 734787690684657664 7102 13745 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1105 734776360183431168 608 2742 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1106 734559631394082816 451 1646 3200944 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1107 733828123016450049 881 3926 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1108 733822306246479872 1141 4015 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1109 733482008106668032 1065 3438 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1110 733460102733135873 1451 4605 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1111 733109485275860992 17621 44619 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1112 732732193018155009 599 2671 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1113 732726085725589504 1003 3855 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1114 732585889486888962 868 4016 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1115 732375214819057664 2838 8832 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1116 732005617171337216 6154 16324 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1117 731285275100512256 1090 3798 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1118 731156023742988288 1434 4196 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1119 730924654643314689 2234 6682 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1120 730573383004487680 2435 5407 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1121 730427201120833536 1176 3809 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1122 730211855403241472 1182 4180 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1123 730196704625098752 2172 5339 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1124 729854734790754305 1268 4396 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1125 729838605770891264 431 1856 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1126 729823566028484608 1390 4358 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1127 729463711119904772 2586 6340 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1128 729113531270991872 370 2054 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1129 728986383096946689 917 3460 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1130 728760639972315136 1911 5090 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1131 728751179681943552 757 3032 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1132 728653952833728512 1169 3620 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1133 728409960103686147 2269 5383 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1134 728387165835677696 1075 3999 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1135 728046963732717569 1328 4722 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1136 728035342121635841 1872 4953 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1137 728015554473250816 1219 4479 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1138 727685679342333952 720 3206 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1139 727644517743104000 1962 6431 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1140 727524757080539137 1379 4900 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1141 727314416056803329 834 3623 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1142 727286334147182592 920 3324 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1143 727175381690781696 1540 4209 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1144 727155742655025152 1490 3983 3200945 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1145 726935089318363137 2738 7496 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1146 726887082820554753 1677 4195 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1147 726828223124897792 1124 3882 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1148 726224900189511680 1302 4811 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1149 725842289046749185 2970 7691 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1150 725786712245440512 1527 4537 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1151 725729321944506368 2009 5646 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1152 725458796924002305 703 1541 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1153 724983749226668032 1462 4040 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1154 724771698126512129 725 2593 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1155 724405726123311104 1847 5800 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1156 724049859469295616 1984 4738 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1157 724046343203856385 620 2901 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1158 724004602748780546 1790 4561 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1159 723912936180330496 1374 4236 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1160 723688335806480385 3347 8435 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1161 723673163800948736 1011 3291 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1162 723179728551723008 2110 5761 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1163 722974582966214656 1764 4493 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1164 722613351520608256 1831 5393 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1165 721503162398597120 2124 5086 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1166 721001180231503872 686 2748 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1167 720785406564900865 866 3400 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1168 720775346191278080 760 2702 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1169 720415127506415616 1681 4503 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1170 720389942216527872 2840 6974 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1171 720340705894408192 1098 3131 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1172 720059472081784833 1268 4229 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1173 720043174954147842 2253 5332 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1174 719991154352222208 1979 5281 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1175 719704490224398336 1645 4974 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1176 719551379208073216 2192 5515 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1177 719367763014393856 827 3022 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1178 719339463458033665 1403 4822 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1179 719332531645071360 1078 3711 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1180 718971898235854848 1231 3818 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1181 718939241951195136 1973 5720 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1182 718631497683582976 9126 20697 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1183 718613305783398402 542 2669 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1184 718540630683709445 1137 2730 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1185 718460005985447936 602 2846 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1186 718454725339934721 1685 5320 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1187 718246886998687744 565 2115 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1188 718234618122661888 1127 4217 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1189 717841801130979328 670 2660 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1190 717790033953034240 1272 3170 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1191 717537687239008257 2069 6281 3200944 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1192 717428917016076293 510 1748 3200945 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1193 717421804990701568 945 3446 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1194 717047459982213120 2135 6826 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1195 717009362452090881 1102 3583 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1196 716802964044845056 1317 4627 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1197 716791146589110272 1474 5204 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1198 716730379797970944 475 1339 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1199 716447146686459905 6643 14327 3200945 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1200 716439118184652801 247 2574 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1201 716285507865542656 1225 3041 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1202 716080869887381504 1935 5272 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1203 715928423106027520 987 3485 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1204 715758151270801409 1596 4085 3200945 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1205 715733265223708672 1920 5093 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1206 715704790270025728 634 3055 3200945 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1207 715696743237730304 1454 4257 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1208 715680795826982913 1813 4719 3200945 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1209 715360349751484417 1772 5955 3200946 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1210 715342466308784130 768 3294 3200946 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1211 715220193576927233 736 2630 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1212 715200624753819648 2110 5578 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1213 715009755312439296 1392 4550 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1214 714982300363173890 1166 4094 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1215 714962719905021952 4816 8028 3200947 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1216 714957620017307648 1595 4503 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1217 714631576617938945 1122 3571 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1218 714606013974974464 1038 3938 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1219 714485234495041536 1313 2962 3200947 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1220 714258258790387713 808 3281 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1221 714251586676113411 940 3570 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1222 714214115368108032 990 2480 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1223 714141408463036416 1569 4673 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1224 713919462244790272 869 3564 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1225 713909862279876608 616 2078 3200947 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1226 713900603437621249 829 3062 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1227 713761197720473600 1541 5308 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1228 713411074226274305 1440 4802 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1229 713177543487135744 3183 7854 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1230 713175907180089344 1630 4851 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1231 712809025985978368 7602 20378 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1232 712717840512598017 5616 13474 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1233 712668654853337088 1367 4531 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1234 712438159032893441 1756 5799 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1235 712309440758808576 26 269 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1236 712097430750289920 1172 4144 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1237 712092745624633345 1016 3211 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1238 712085617388212225 556 3531 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1239 712065007010385924 700 2451 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1240 711998809858043904 138 0 3200947 104 <a href="http://twitter.com/download/iphone" r... Retweet
1241 711968124745228288 2601 8776 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1242 711743778164514816 1101 3095 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1243 711732680602345472 4653 9756 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1244 711694788429553666 20500 35865 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1245 711652651650457602 1037 4228 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1246 711363825979756544 1287 3996 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1247 711306686208872448 819 3596 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1248 711008018775851008 710 3275 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1249 710997087345876993 1561 4960 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1250 710844581445812225 779 2775 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1251 710833117892898816 606 2937 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1252 710658690886586372 636 2529 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1253 710609963652087808 2624 5227 3200947 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1254 710588934686908417 2107 4968 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1255 710296729921429505 833 2574 3200947 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1256 710283270106132480 580 2308 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1257 710272297844797440 1425 4945 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1258 710269109699739648 1257 2613 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1259 710153181850935296 1006 3153 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1260 710140971284037632 1008 3017 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1261 710117014656950272 2233 5999 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1262 709918798883774466 1215 3250 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1263 709901256215666688 112 732 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1264 709852847387627521 1336 3824 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1265 709566166965075968 1367 3865 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1266 709556954897764353 1204 3593 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1267 709519240576036864 277 1620 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1268 709449600415961088 665 2420 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1269 709409458133323776 788 2855 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1270 709225125749587968 647 2615 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1271 709207347839836162 6567 13755 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1272 709198395643068416 721 2634 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1273 709179584944730112 763 2213 3200947 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1274 709158332880297985 470 2236 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1275 709042156699303936 1864 5197 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1276 708853462201716736 745 1941 3200947 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1277 708845821941387268 1015 3226 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1278 708834316713893888 571 1860 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1279 708810915978854401 7848 18036 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1280 708738143638450176 917 2997 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1281 708711088997666817 834 2790 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1282 708479650088034305 765 2768 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1283 708469915515297792 926 3357 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1284 708400866336894977 11330 17516 3200947 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1285 708356463048204288 1520 3929 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1286 708349470027751425 831 2568 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1287 708149363256774660 1727 4672 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1288 708130923141795840 943 3707 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1289 708119489313951744 1102 2937 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1290 708109389455101952 610 2124 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1291 708026248782585858 2166 4799 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1292 707995814724026368 1273 3385 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1293 707983188426153984 2 52 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1294 707969809498152960 1097 2941 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1295 707776935007539200 1079 3593 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1296 707741517457260545 696 2718 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1297 707738799544082433 2785 4495 3200947 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1298 707693576495472641 1133 3765 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1299 707629649552134146 997 2834 3200947 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1300 707610948723478529 7236 18557 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1301 707420581654872064 789 2499 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1302 707411934438625280 673 2486 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1303 707387676719185920 1490 3835 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1304 707377100785885184 1214 3603 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1305 707315916783140866 727 2698 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1306 707297311098011648 903 3022 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1307 707059547140169728 759 2796 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1308 707038192327901184 900 2404 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1309 707021089608753152 1540 4433 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1310 707014260413456384 664 2502 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1311 706904523814649856 8830 15961 3200947 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1312 706901761596989440 680 2264 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1313 706681918348251136 1103 3627 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1314 706644897839910912 1224 2814 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1315 706593038911545345 718 2363 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1316 706538006853918722 1580 3778 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1317 706516534877929472 1150 3404 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1318 706346369204748288 1035 3768 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1319 706310011488698368 9034 23443 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1320 706291001778950144 522 1861 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1321 706265994973601792 1030 2979 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1322 706169069255446529 2511 4291 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1323 706166467411222528 1819 5636 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1324 706153300320784384 437 1632 3200947 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1325 705975130514706432 842 3397 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1326 705970349788291072 1008 3440 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1327 705898680587526145 643 2597 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1328 705786532653883392 596 2132 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1329 705591895322394625 1308 3475 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1330 705475953783398401 1045 3231 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1331 705442520700944385 1859 4877 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1332 705428427625635840 1931 4188 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1333 705239209544720384 854 3290 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1334 705223444686888960 900 2829 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1335 705102439679201280 585 2342 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1336 705066031337840642 683 2378 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1337 704871453724954624 1245 4585 3200947 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1338 704859558691414016 612 2462 3200948 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1339 704847917308362754 1727 5594 3200948 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1340 704819833553219584 1136 2906 3200948 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1341 704761120771465216 3257 7283 3200948 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1342 704499785726889984 1124 3212 3200948 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1343 704491224099647488 97 840 3200948 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1344 704480331685040129 1197 3723 3200948 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1345 704364645503647744 3999 8804 3200948 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1346 704347321748819968 393 1729 3200948 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1347 704134088924532736 519 1653 3200948 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1348 704113298707505153 629 2031 3200949 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1349 704054845121142784 1028 3201 3200949 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1350 703774238772166656 526 2020 3200949 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1351 703769065844768768 1276 3621 3200949 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1352 703631701117943808 772 2853 3200949 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1353 703611486317502464 1709 4229 3200949 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1354 703425003149250560 1559 4162 3200949 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1355 703407252292673536 786 2685 3200949 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1356 703382836347330562 1285 3837 3200949 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1357 703356393781329922 429 2085 3200949 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1358 703268521220972544 618 2152 3200949 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1359 703079050210877440 3494 8064 3200949 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1360 703041949650034688 14198 28996 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1361 702932127499816960 811 2825 3200858 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1362 702899151802126337 509 1772 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1363 702684942141153280 1215 3516 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1364 702671118226825216 634 2398 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1365 702598099714314240 3712 11332 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1366 702539513671897089 1091 3134 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1367 702332542343577600 1755 3491 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1368 702321140488925184 1156 3604 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1369 702276748847800320 860 2706 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1370 702217446468493312 1526 5268 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1371 701981390485725185 1106 3755 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1372 701952816642965504 1149 4167 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1373 701889187134500865 1558 3905 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1374 701805642395348998 1900 3752 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1375 701601587219795968 523 2299 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1376 701570477911896070 1055 3080 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1377 701545186879471618 680 2902 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1378 701214700881756160 5812 13475 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1379 700890391244103680 653 2437 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1380 700864154249383937 685 2828 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1381 700847567345688576 558 2637 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1382 700796979434098688 1085 2669 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1383 700747788515020802 10673 25130 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1384 700518061187723268 915 2887 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1385 700505138482569216 646 2487 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1386 700462010979500032 2031 4537 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1387 700167517596164096 836 2903 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1388 700151421916807169 754 2450 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1389 700143752053182464 3129 8282 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1390 700062718104104960 778 2890 3200858 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1391 700029284593901568 661 2262 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1392 700002074055016451 1529 3627 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1393 699801817392291840 1088 3345 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1394 699788877217865730 557 2458 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1395 699779630832685056 1397 3039 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1396 699775878809702401 690 2150 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1397 699691744225525762 5174 11252 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1398 699446877801091073 2938 6515 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1399 699434518667751424 577 2384 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1400 699423671849451520 383 1505 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1401 699413908797464576 688 2258 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1402 699370870310113280 497 2053 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1403 699323444782047232 983 3466 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1404 699088579889332224 715 2451 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1405 699079609774645248 745 2677 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1406 699072405256409088 1325 3296 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1407 699060279947165696 2059 4173 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1408 699036661657767936 1345 2863 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1409 698989035503689728 1113 3701 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1410 698953797952008193 1020 2975 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1411 698907974262222848 699 2787 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1412 698710712454139905 774 2710 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1413 698703483621523456 425 1608 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1414 698635131305795584 388 1400 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1415 698549713696649216 704 2536 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1416 698355670425473025 516 2046 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1417 698342080612007937 1074 2485 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1418 698262614669991936 2268 5214 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1419 698195409219559425 6750 18408 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1420 698178924120031232 830 3084 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1421 697995514407682048 372 1665 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1422 697990423684476929 1451 3592 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1423 697943111201378304 776 2638 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1424 697881462549430272 1337 3313 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1425 697630435728322560 614 1909 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1426 697616773278015490 1144 3467 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1427 697596423848730625 1425 3306 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1428 697575480820686848 572 2250 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1429 697516214579523584 1282 2281 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1430 697482927769255936 765 2662 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1431 697463031882764288 1552 3748 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1432 697270446429966336 2087 5131 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1433 697259378236399616 1136 3611 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1434 697255105972801536 1315 3316 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1435 697242256848379904 751 2753 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1436 696900204696625153 1156 3492 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1437 696894894812565505 758 2594 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1438 696886256886657024 2016 5317 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1439 696877980375769088 802 2689 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1440 696754882863349760 396 1615 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1441 696744641916489729 1069 2293 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1442 696713835009417216 757 2613 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1443 696518437233913856 1887 4274 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1444 696490539101908992 170 1339 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1445 696488710901260288 1166 2788 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1446 696405997980676096 1284 3531 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1447 696100768806522880 750 2125 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1448 695816827381944320 1320 3287 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1449 695794761660297217 880 3490 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1450 695767669421768709 854 2060 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1451 695629776980148225 2377 5020 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1452 695446424020918272 2026 4787 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1453 695409464418041856 4017 9460 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1454 695314793360662529 1675 4004 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1455 695095422348574720 684 2888 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1456 695074328191332352 1239 3116 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1457 695064344191721472 685 1771 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1458 695051054296211456 885 2918 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1459 694925794720792577 1043 2965 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1460 694905863685980160 1053 3046 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1461 694669722378485760 13517 26068 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1462 694356675654983680 328 1653 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1463 694352839993344000 700 2244 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1464 694342028726001664 557 1727 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1465 694329668942569472 569 2203 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1466 694206574471057408 2297 4582 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1467 694183373896572928 1040 3236 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1468 694001791655137281 1176 3705 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1469 693993230313091072 457 2044 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1470 693942351086120961 413 1896 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1471 693647888581312512 673 2961 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1472 693644216740769793 150 1473 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1473 693642232151285760 472 2790 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1474 693629975228977152 894 2685 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1475 693622659251335168 422 1691 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1476 693590843962331137 2233 5565 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1477 693582294167244802 292 1802 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1478 693486665285931008 698 1941 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1479 693280720173801472 1403 3669 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1480 693267061318012928 925 2622 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1481 693262851218264065 568 2459 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1482 693231807727280129 841 3133 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1483 693155686491000832 3622 8668 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1484 693109034023534592 695 1889 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1485 693095443459342336 523 2056 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1486 692919143163629568 838 2926 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1487 692905862751522816 998 2683 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1488 692901601640583168 682 1971 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1489 692894228850999298 910 2511 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1490 692828166163931137 998 3148 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1491 692752401762250755 4124 7496 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1492 692568918515392513 1737 4739 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1493 692535307825213440 1529 3504 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1494 692530551048294401 474 2021 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1495 692423280028966913 265 1618 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1496 692417313023332352 3917 10275 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1497 692187005137076224 929 2768 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1498 692158366030913536 896 2369 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1499 692142790915014657 438 1798 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1500 692041934689402880 1424 3724 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1501 692017291282812928 1081 3153 3200858 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1502 691820333922455552 1860 4329 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1503 691793053716221953 4732 8910 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1504 691756958957883396 1161 3179 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1505 691675652215414786 577 2116 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1506 691483041324204033 656 2608 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1507 691459709405118465 1294 4449 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1508 691444869282295808 955 2890 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1509 691416866452082688 8689 21253 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1510 691321916024623104 747 2828 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1511 691096613310316544 1019 3253 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1512 691090071332753408 385 1867 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1513 690989312272396288 3282 6513 3200951 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1514 690959652130045952 1421 3902 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1515 690938899477221376 2245 4536 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1516 690932576555528194 1143 3602 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1517 690735892932222976 1442 4134 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1518 690728923253055490 597 2384 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1519 690690673629138944 898 2547 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1520 690649993829576704 325 1435 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1521 690607260360429569 19 313 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1522 690597161306841088 681 2163 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1523 690400367696297985 509 2041 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1524 690374419777196032 972 3560 3200859 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1525 690360449368465409 1006 2925 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1526 690348396616552449 573 1644 3200951 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1527 690248561355657216 477 1845 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1528 690021994562220032 1180 3056 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1529 690015576308211712 836 2740 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1530 690005060500217858 1907 4004 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1531 689999384604450816 424 1561 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1532 689993469801164801 518 1618 3200858 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1533 689977555533848577 502 1490 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1534 689905486972461056 787 2651 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1535 689877686181715968 1344 3323 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1536 689835978131935233 850 2369 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1537 689661964914655233 1052 3501 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1538 689659372465688576 4412 11394 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1539 689623661272240129 748 2467 3200859 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1540 689599056876867584 6265 12795 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1541 689557536375177216 519 2257 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1542 689517482558820352 1609 3735 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1543 689289219123089408 1056 2476 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1544 689283819090870273 1250 3624 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1545 689280876073582592 819 2197 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1546 689275259254616065 285 1273 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1547 689255633275777024 1212 2805 3200951 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1548 689154315265683456 1128 3348 3200859 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1549 689143371370250240 579 2232 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1550 688916208532455424 983 3003 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1551 688908934925697024 874 2310 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1552 688898160958271489 890 2307 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1553 688894073864884227 792 2462 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1554 688828561667567616 420 1508 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1555 688804835492233216 227 1043 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1556 688789766343622656 759 2434 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1557 688547210804498433 789 2862 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1558 688519176466644993 825 2520 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1559 688385280030670848 5035 10180 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1560 688211956440801280 937 2426 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1561 688179443353796608 669 2328 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1562 688116655151435777 888 3093 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1563 688064179421470721 408 1878 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1564 687841446767013888 2872 6009 3200951 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1565 687826841265172480 1292 2989 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1566 687818504314159109 1080 2758 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1567 687807801670897665 801 2625 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1568 687732144991551489 750 1935 3200951 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1569 687704180304273409 950 2660 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1570 687664829264453632 576 2121 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1571 687494652870668288 654 2104 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1572 687480748861947905 281 1760 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1573 687476254459715584 619 2187 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1574 687460506001633280 614 2243 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1575 687399393394311168 702 2081 3200951 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1576 687317306314240000 10411 22073 3200859 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1577 687312378585812992 2146 4777 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1578 687127927494963200 2591 6004 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1579 687124485711986689 577 2371 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1580 687109925361856513 2803 6370 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1581 687102708889812993 1124 2571 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1582 687096057537363968 695 2449 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1583 686947101016735744 3582 9433 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1584 686760001961103360 1551 3852 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1585 686749460672679938 1666 3812 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1586 686730991906516992 1350 4543 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1587 686683045143953408 912 3072 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1588 686618349602762752 1544 4042 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1589 686606069955735556 607 2071 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1590 686394059078897668 769 1928 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1591 686386521809772549 996 3553 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1592 686377065986265092 637 2433 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1593 686358356425093120 776 2398 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1594 686286779679375361 1887 4392 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1595 686050296934563840 836 2420 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1596 686035780142297088 138 1274 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1597 686034024800862208 1324 3424 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1598 686007916130873345 472 2704 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1599 686003207160610816 735 2009 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1600 685973236358713344 611 2326 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1601 685943807276412928 696 1801 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1602 685906723014619143 3303 8277 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1603 685681090388975616 140 2069 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1604 685667379192414208 666 2579 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1605 685663452032069632 1656 3557 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1606 685641971164143616 885 3218 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1607 685547936038666240 17465 35052 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1608 685532292383666176 1298 3336 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1609 685325112850124800 4535 10471 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1610 685321586178670592 735 2910 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1611 685315239903100929 1234 3676 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1612 685307451701334016 496 2262 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1613 685268753634967552 1371 3419 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1614 685198997565345792 764 2566 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1615 685169283572338688 1620 4489 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1616 684969860808454144 421 2374 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1617 684959798585110529 3487 7004 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1618 684940049151070208 1191 3523 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1619 684926975086034944 552 3849 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1620 684914660081053696 1662 3848 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1621 684902183876321280 605 2053 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1622 684880619965411328 936 2305 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1623 684830982659280897 24514 38551 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1624 684800227459624960 1124 2979 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1625 684594889858887680 4016 9843 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1626 684588130326986752 1592 4489 3200950 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1627 684567543613382656 1418 3312 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1628 684538444857667585 1085 2915 3200950 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1629 684481074559381504 1320 4249 3200951 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1630 684460069371654144 628 2169 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1631 684241637099323392 3727 8999 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1632 684225744407494656 239 1369 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1633 684222868335505415 1563 4225 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1634 684200372118904832 1177 2394 3200860 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1635 684195085588783105 595 2108 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1636 684188786104872960 1343 3831 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1637 684177701129875456 764 2215 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1638 684147889187209216 1703 3265 3200952 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1639 684122891630342144 539 2176 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1640 684097758874210310 1621 4515 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1641 683857920510050305 1262 4163 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1642 683852578183077888 397 2111 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1643 683849932751646720 1116 2896 3200860 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1644 683834909291606017 1265 2880 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1645 683828599284170753 1195 3053 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1646 683773439333797890 1533 3684 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1647 683742671509258241 3781 7162 3200860 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1648 683515932363329536 3291 8058 3200952 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1649 683498322573824003 1095 3469 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1650 683481228088049664 1118 2878 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1651 683462770029932544 761 2676 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1652 683449695444799489 1837 4290 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1653 683391852557561860 2702 8356 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1654 683357973142474752 1059 3238 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1655 683142553609318400 1173 3162 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1656 683111407806746624 1034 3736 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1657 683098815881154561 736 2361 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1658 683078886620553216 634 2176 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1659 683030066213818368 832 2370 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1660 682962037429899265 15043 26239 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1661 682808988178739200 210 1953 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1662 682788441537560576 1258 2706 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1663 682750546109968385 494 1674 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1664 682697186228989953 397 1440 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1665 682662431982772225 1207 3326 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1666 682638830361513985 675 2266 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1667 682429480204398592 1320 3769 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1668 682406705142087680 2019 8319 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1669 682393905736888321 773 2441 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1670 682389078323662849 518 1828 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1671 682303737705140231 1135 3389 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1672 682259524040966145 1375 4578 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1673 682242692827447297 1341 3566 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1674 682088079302213632 11271 20108 3200952 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1675 682059653698686977 1915 5442 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1676 682047327939461121 1088 3525 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1677 682032003584274432 2294 7223 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1678 682003177596559360 1722 3464 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1679 681981167097122816 1161 3043 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1680 681891461017812993 951 2706 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1681 681694085539872773 4581 14010 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1682 681679526984871937 499 1923 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1683 681654059175129088 1045 2903 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1684 681610798867845120 533 2100 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1685 681579835668455424 1489 3893 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1686 681523177663676416 6620 15749 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1687 681340665377193984 313 1803 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1688 681339448655802368 4598 10202 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1689 681320187870711809 863 2918 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1690 681302363064414209 2072 4347 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1691 681297372102656000 1091 3490 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1692 681281657291280384 1258 3520 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1693 681261549936340994 308 1597 3200860 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1694 681242418453299201 624 1645 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1695 681231109724700672 540 2629 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1696 681193455364796417 1691 4077 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1697 680970795137544192 749 2665 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1698 680959110691590145 2243 4986 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1699 680940246314430465 1225 3544 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1700 680934982542561280 497 2285 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1701 680913438424612864 705 2609 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1702 680889648562991104 418 1945 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1703 680836378243002368 1513 3766 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1704 680805554198020098 751 2370 3200952 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1705 680801747103793152 925 2600 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1706 680798457301471234 1182 3134 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1707 680609293079592961 816 2906 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1708 680583894916304897 1514 3939 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1709 680497766108381184 2162 4639 3200952 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1710 680494726643068929 542 1879 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1711 680473011644985345 844 2778 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1712 680440374763077632 564 1583 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1713 680221482581123072 329 1598 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1714 680206703334408192 1323 3115 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1715 680191257256136705 577 2356 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1716 680176173301628928 1760 4263 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1717 680161097740095489 828 2538 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1718 680145970311643136 1972 3955 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1719 680130881361686529 1078 2519 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1720 680115823365742593 1028 2972 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1721 680100725817409536 1554 3891 3200953 104 <a href="https://about.twitter.com/products/tw... Original Tweet
1722 680085611152338944 10034 13959 3200953 104 <a href="https://about.twitter.com/products/tw... Original Tweet
1723 680070545539371008 994 2818 3200953 104 <a href="https://about.twitter.com/products/tw... Original Tweet
1724 680055455951884288 8067 18278 3200953 104 <a href="https://about.twitter.com/products/tw... Original Tweet
1725 679877062409191424 726 2155 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1726 679872969355714560 749 2365 3200953 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1727 679862121895714818 706 2678 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1728 679854723806179328 1402 3143 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1729 679844490799091713 887 2593 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1730 679828447187857408 15839 39726 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1731 679777920601223168 1281 3390 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1732 679736210798047232 918 2311 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1733 679729593985699840 937 2367 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1734 679722016581222400 539 1817 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1735 679530280114372609 2347 5208 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1736 679527802031484928 823 2892 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1737 679511351870550016 1461 3711 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1738 679503373272485890 1673 3484 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1739 679475951516934144 728 2304 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1740 679462823135686656 21324 34856 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1741 679405845277462528 1364 2594 3200953 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1742 679158373988876288 9193 23568 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1743 679148763231985668 1163 3028 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1744 679132435750195208 1314 3253 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1745 679111216690831360 2893 6514 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1746 679062614270468097 9299 18712 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1747 679047485189439488 781 2460 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1748 679001094530465792 1378 3075 3200953 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1749 678991772295516161 1333 2537 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1750 678969228704284672 528 1796 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1751 678800283649069056 1018 2810 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1752 678798276842360832 1350 3804 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1753 678774928607469569 1043 3037 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1754 678767140346941444 1553 3864 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1755 678764513869611008 544 1788 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1756 678755239630127104 3741 7802 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1757 678740035362037760 1926 4099 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1758 678708137298427904 2753 6082 3200953 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1759 678675843183484930 1680 3155 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1760 678643457146150913 489 2250 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1761 678446151570427904 1785 4358 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1762 678424312106393600 2880 5916 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1763 678410210315247616 2072 4640 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1764 678399652199309312 30742 61794 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1765 678396796259975168 478 1731 3200862 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1766 678389028614488064 473 2044 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1767 678380236862578688 1020 2655 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1768 678341075375947776 612 1896 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1769 678334497360859136 304 1427 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1770 678278586130948096 6857 12531 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1771 678255464182861824 418 1726 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1772 678023323247357953 439 2095 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1773 678021115718029313 7148 15018 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1774 677961670166224897 1879 3701 3200954 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1775 677918531514703872 463 1476 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1776 677895101218201600 2384 5275 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1777 677716515794329600 1104 3323 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1778 677700003327029250 1622 3689 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1779 677698403548192770 363 1332 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1780 677687604918272002 950 2681 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1781 677673981332312066 1677 3603 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1782 677662372920729601 1101 2134 3200954 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1783 677644091929329666 886 2040 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1784 677573743309385728 819 2322 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1785 677565715327688705 513 1409 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1786 677557565589463040 1322 2665 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1787 677547928504967168 4076 7568 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1788 677530072887205888 250 1161 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1789 677335745548390400 2017 3328 3200953 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1790 677334615166730240 328 1477 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1791 677331501395156992 265 1189 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1792 677328882937298944 1693 3938 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1793 677314812125323265 611 1799 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1794 677301033169788928 471 1362 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1795 677269281705472000 790 2164 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1796 677228873407442944 1840 3837 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1797 677187300187611136 1033 2981 3200953 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1798 676975532580409345 1203 3015 3201000 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1799 676957860086095872 907 2395 3201000 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1800 676949632774234114 448 1413 3201000 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1801 676948236477857792 980 2354 3201001 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1802 676946864479084545 426 1844 3201001 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1803 676942428000112642 855 2261 3201001 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1804 676936541936185344 5515 13809 3201001 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1805 676916996760600576 2002 3231 3201001 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1806 676897532954456065 817 2426 3201001 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1807 676864501615042560 808 2294 3201001 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1808 676821958043033607 17605 25124 3201001 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1809 676819651066732545 741 1957 3201001 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1810 676811746707918848 469 1536 3201001 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1811 676776431406465024 2249 5405 3201001 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1812 676617503762681856 1108 3149 3201001 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1813 676613908052996102 219 1183 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1814 676606785097199616 490 2039 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1815 676603393314578432 440 1280 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1816 676593408224403456 2410 4954 3201002 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1817 676590572941893632 142 1001 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1818 676588346097852417 896 2533 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1819 676582956622721024 312 1310 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1820 676575501977128964 1254 2807 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1821 676533798876651520 621 2025 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1822 676496375194980353 602 1641 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1823 676470639084101634 5224 12616 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1824 676440007570247681 748 1863 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1825 676430933382295552 385 1526 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1826 676263575653122048 609 2243 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1827 676237365392908289 331 1335 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1828 676219687039057920 31989 67100 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1829 676215927814406144 661 1881 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1830 676191832485810177 1145 2478 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1831 676146341966438401 744 2077 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1832 676121918416756736 1297 2335 3201002 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1833 676101918813499392 1284 3042 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1834 676098748976615425 1623 3279 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1835 676089483918516224 483 1431 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1836 675898130735476737 653 1774 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1837 675891555769696257 976 2297 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1838 675888385639251968 1067 2581 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1839 675878199931371520 1570 4531 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1840 675870721063669760 632 1783 3200910 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1841 675853064436391936 1460 2927 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1842 675849018447167488 172 1027 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1843 675845657354215424 1000 2477 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1844 675822767435051008 591 1652 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1845 675820929667219457 260 1140 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1846 675798442703122432 3787 11101 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1847 675781562965868544 537 1750 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1848 675740360753160193 388 1257 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1849 675710890956750848 928 2046 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1850 675707330206547968 771 2154 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1851 675706639471788032 106 693 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1852 675534494439489536 470 1953 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1853 675531475945709568 428 1276 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1854 675522403582218240 316 1122 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1855 675517828909424640 507 1414 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1856 675501075957489664 6485 18482 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1857 675497103322386432 1443 3397 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1858 675489971617296384 672 1406 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1859 675483430902214656 1081 1985 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1860 675432746517426176 627 1623 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1861 675372240448454658 563 1838 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1862 675362609739206656 262 1136 3201002 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1863 675354435921575936 18963 35178 3201003 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
1864 675349384339542016 2532 4237 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1865 675334060156301312 1436 3007 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1866 675166823650848770 1795 3920 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1867 675153376133427200 2734 6072 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1868 675149409102012420 1878 4037 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1869 675147105808306176 273 1026 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1870 675146535592706048 349 1300 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1871 675145476954566656 1011 2305 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1872 675135153782571009 542 1398 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1873 675113801096802304 877 2120 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1874 675111688094527488 283 1042 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1875 675109292475830276 1259 3006 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1876 675047298674663426 366 1141 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1877 675015141583413248 1335 2918 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1878 675006312288268288 252 1057 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1879 675003128568291329 517 1672 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1880 674999807681908736 1232 2433 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1881 674805413498527744 391 934 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1882 674800520222154752 949 3240 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1883 674793399141146624 1225 2697 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1884 674790488185167872 278 1180 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1885 674788554665512960 230 871 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1886 674781762103414784 1335 2169 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1887 674774481756377088 532 1213 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1888 674767892831932416 883 1981 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1889 674764817387900928 263 852 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1890 674754018082705410 488 1456 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1891 674752233200820224 516 1580 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1892 674743008475090944 607 1514 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1893 674742531037511680 55 527 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1894 674739953134403584 437 1194 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1895 674737130913071104 103 693 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1896 674690135443775488 510 1237 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1897 674670581682434048 729 1751 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1898 674664755118911488 276 994 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1899 674646392044941312 557 1533 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1900 674644256330530816 311 1111 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1901 674638615994089473 650 1806 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1902 674632714662858753 637 1617 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1903 674606911342424069 115 1013 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1904 674468880899788800 2275 6676 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1905 674447403907457024 393 1137 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1906 674436901579923456 426 1198 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1907 674422304705744896 592 1536 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1908 674416750885273600 157 731 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1909 674410619106390016 515 1289 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1910 674394782723014656 635 1607 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1911 674372068062928900 346 931 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1912 674330906434379776 83 602 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1913 674318007229923329 570 1516 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1914 674307341513269249 7641 12129 3201003 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
1915 674291837063053312 6533 15817 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1916 674271431610523648 800 1682 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1917 674269164442398721 255 961 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1918 674265582246694913 936 1766 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1919 674262580978937856 498 1391 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1920 674255168825880576 619 1581 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1921 674082852460433408 186 804 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1922 674075285688614912 316 1047 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1923 674063288070742018 2450 6769 3201003 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1924 674053186244734976 1441 3576 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1925 674051556661161984 530 1564 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1926 674045139690631169 710 1520 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1927 674042553264685056 142 772 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1928 674038233588723717 456 1176 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1929 674036086168010753 240 906 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1930 674024893172875264 1360 1914 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1931 674019345211760640 340 1208 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1932 674014384960745472 714 1676 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1933 674008982932058114 393 1297 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1934 673956914389192708 1069 2091 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1935 673919437611909120 401 1251 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1936 673906403526995968 1799 3406 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1937 673887867907739649 274 994 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1938 673716320723169284 843 3289 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1939 673715861853720576 2303 3815 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1940 673711475735838725 325 1114 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1941 673709992831262724 306 908 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1942 673708611235921920 315 1153 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1943 673707060090052608 434 1177 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1944 673705679337693185 439 1337 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1945 673700254269775872 638 1532 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1946 673697980713705472 2165 4067 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1947 673689733134946305 700 1855 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1948 673688752737402881 534 1325 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1949 673686845050527744 479 1544 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1950 673680198160809984 521 1460 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1951 673662677122719744 397 1339 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1952 673656262056419329 265 769 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1953 673636718965334016 404 1194 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1954 673612854080196609 802 1691 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1955 673583129559498752 403 1273 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1956 673580926094458881 297 882 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1957 673576835670777856 613 1482 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1958 673363615379013632 338 1088 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1959 673359818736984064 728 1558 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1960 673355879178194945 652 1606 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1961 673352124999274496 597 1761 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1962 673350198937153538 229 784 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1963 673345638550134785 1422 2700 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1964 673343217010679808 289 1038 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1965 673342308415348736 649 1362 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1966 673320132811366400 8705 14441 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1967 673317986296586240 293 924 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1968 673295268553605120 3484 8046 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1969 673270968295534593 400 1134 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1970 673240798075449344 798 1510 3201004 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1971 673213039743795200 929 2410 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1972 673148804208660480 688 1822 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1973 672997845381865473 786 2092 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1974 672995267319328768 328 1001 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1975 672988786805112832 314 1039 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1976 672984142909456390 593 1338 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1977 672980819271634944 1079 1930 3200913 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1978 672975131468300288 1015 1813 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1979 672970152493887488 391 1019 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1980 672968025906282496 602 1405 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1981 672964561327235073 701 1530 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1982 672902681409806336 550 1452 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1983 672898206762672129 459 944 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1984 672884426393653248 897 1661 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1985 672877615439593473 405 1096 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1986 672834301050937345 623 1398 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1987 672828477930868736 533 1343 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1988 672640509974827008 348 1032 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1989 672622327801233409 542 1377 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1990 672614745925664768 644 1302 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1991 672609152938721280 424 1180 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1992 672604026190569472 445 1188 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1993 672594978741354496 661 1411 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1994 672591762242805761 367 1014 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1995 672591271085670400 207 782 3201005 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1996 672538107540070400 404 1089 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1997 672523490734551040 189 696 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1998 672488522314567680 482 1187 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1999 672482722825261057 665 1221 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2000 672481316919734272 137 757 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2001 672475084225949696 770 1529 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2002 672466075045466113 598 1447 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2003 672272411274932228 3677 6888 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2004 672267570918129665 666 1588 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2005 672264251789176834 383 1212 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2006 672256522047614977 1699 2999 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2007 672254177670729728 800 1515 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2008 672248013293752320 656 1833 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2009 672245253877968896 169 733 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2010 672239279297454080 347 953 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2011 672231046314901505 1089 1956 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2012 672222792075620352 231 833 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2013 672205392827572224 1270 2414 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2014 672169685991993344 408 1074 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2015 672160042234327040 395 918 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2016 672139350159835138 792 1876 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2017 672125275208069120 1253 2578 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2018 672095186491711488 395 1063 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2019 672082170312290304 402 1003 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2020 672068090318987265 564 1389 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2021 671896809300709376 4519 9016 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2022 671891728106971137 618 1415 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2023 671882082306625538 1488 3693 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2024 671879137494245376 748 1507 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2025 671874878652489728 601 1330 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2026 671866342182637568 548 1191 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2027 671855973984772097 502 977 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2028 671789708968640512 3811 7527 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2029 671768281401958400 572 1269 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2030 671763349865160704 999 1788 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2031 671744970634719232 841 1430 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2032 671743150407421952 248 779 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2033 671735591348891648 819 1534 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2034 671729906628341761 4795 9119 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2035 671561002136281088 7931 13679 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2036 671550332464455680 229 967 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2037 671547767500775424 658 1444 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2038 671544874165002241 1145 2126 3201006 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2039 671542985629241344 616 1166 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2040 671538301157904385 436 993 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2041 671536543010570240 441 1253 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2042 671533943490011136 631 1092 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2043 671528761649688577 280 896 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2044 671520732782923777 582 1499 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2045 671518598289059840 319 1010 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2046 671511350426865664 791 1734 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2047 671504605491109889 3866 7495 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2048 671497587707535361 481 980 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2049 671488513339211776 516 1073 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2050 671486386088865792 226 621 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2051 671485057807351808 253 806 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2052 671390180817915904 805 1513 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2053 671362598324076544 325 1193 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2054 671357843010908160 157 426 3201007 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2055 671355857343524864 119 508 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2056 671347597085433856 476 1031 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2057 671186162933985280 241 788 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2058 671182547775299584 378 1193 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2059 671166507850801152 390 931 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2060 671163268581498880 1198 1763 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2061 671159727754231808 89 401 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2062 671154572044468225 241 769 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2063 671151324042559489 166 714 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2064 671147085991960577 254 713 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2065 671141549288370177 713 1246 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2066 671138694582165504 448 996 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2067 671134062904504320 212 796 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2068 671122204919246848 2763 3729 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2069 671115716440031232 842 1436 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2070 671109016219725825 478 1225 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2071 670995969505435648 317 1175 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2072 670842764863651840 4324 7989 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2073 670840546554966016 213 634 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2074 670838202509447168 758 1189 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2075 670833812859932673 135 474 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2076 670832455012716544 242 780 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2077 670826280409919488 4485 5961 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2078 670823764196741120 205 824 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2079 670822709593571328 105 647 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2080 670815497391357952 1708 3410 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2081 670811965569282048 295 1202 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2082 670807719151067136 546 1234 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2083 670804601705242624 1035 2098 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2084 670803562457407488 95 362 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2085 670797304698376195 262 780 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2086 670792680469889025 298 889 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2087 670789397210615808 255 700 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2088 670786190031921152 218 640 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2089 670783437142401025 431 872 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2090 670782429121134593 863 1691 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2091 670780561024270336 317 831 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2092 670778058496974848 77 345 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2093 670764103623966721 466 1154 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2094 670755717859713024 123 475 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2095 670733412878163972 558 1030 3201008 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2096 670727704916926465 403 887 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2097 670717338665226240 547 1301 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2098 670704688707301377 405 814 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2099 670691627984359425 266 632 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2100 670679630144274432 315 799 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2101 670676092097810432 45 267 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2102 670668383499735048 5537 11452 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2103 670474236058800128 835 1635 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2104 670468609693655041 90 375 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2105 670465786746662913 608 1048 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2106 670452855871037440 225 580 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2107 670449342516494336 729 1264 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2108 670444955656130560 2153 7120 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2109 670442337873600512 213 690 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2110 670435821946826752 570 1127 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2111 670434127938719744 708 1501 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2112 670433248821026816 122 345 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2113 670428280563085312 694 1484 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2114 670427002554466305 179 551 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2115 670421925039075328 709 1415 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2116 670420569653809152 342 668 3201009 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2117 670417414769758208 350 604 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2118 670411370698022913 991 2176 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2119 670408998013820928 249 600 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2120 670403879788544000 173 460 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2121 670385711116361728 234 593 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2122 670374371102445568 295 785 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2123 670361874861563904 71 344 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2124 670338931251150849 122 451 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2125 670319130621435904 1359 4110 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2126 670303360680108032 151 452 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2127 670290420111441920 315 750 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2128 670093938074779648 365 1106 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2129 670086499208155136 275 740 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2130 670079681849372674 1373 2390 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2131 670073503555706880 874 1674 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2132 670069087419133954 278 676 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2133 670061506722140161 373 822 3201010 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2134 670055038660800512 357 716 3200918 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2135 670046952931721218 191 684 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2136 670040295598354432 118 801 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2137 670037189829525505 306 625 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2138 670003130994700288 100 352 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2139 669993076832759809 92 344 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2140 669972011175813120 175 471 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2141 669970042633789440 65 317 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2142 669942763794931712 183 536 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2143 669926384437997569 115 400 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2144 669923323644657664 64 250 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2145 669753178989142016 431 858 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2146 669749430875258880 71 289 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2147 669684865554620416 99 551 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2148 669683899023405056 119 412 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2149 669682095984410625 146 375 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2150 669680153564442624 311 712 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2151 669661792646373376 482 860 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2152 669625907762618368 1963 3769 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2153 669603084620980224 401 1006 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2154 669597912108789760 163 550 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2155 669583744538451968 1017 1587 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2156 669573570759163904 156 467 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2157 669571471778410496 1085 1684 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2158 669567591774625800 61 248 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2159 669564461267722241 133 413 3201011 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2160 669393256313184256 83 383 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2161 669375718304980992 792 1425 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2162 669371483794317312 196 524 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2163 669367896104181761 172 485 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2164 669363888236994561 252 669 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2165 669359674819481600 134 390 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2166 669354382627049472 1390 2889 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2167 669353438988365824 281 687 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2168 669351434509529089 207 474 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2169 669328503091937280 452 1081 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2170 669327207240699904 127 610 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2171 669324657376567296 223 525 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2172 669216679721873412 422 958 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2173 669214165781868544 183 468 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2174 669203728096960512 522 1074 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2175 669037058363662336 336 698 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2176 669015743032369152 403 785 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2177 669006782128353280 269 610 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2178 669000397445533696 6965 22118 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2179 668994913074286592 254 468 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2180 668992363537309700 381 802 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2181 668989615043424256 356 726 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2182 668988183816871936 516 961 3201012 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2183 668986018524233728 183 578 3201013 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2184 668981893510119424 340 573 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2185 668979806671884288 382 842 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2186 668975677807423489 641 1386 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2187 668967877119254528 25 161 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2188 668960084974809088 263 757 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2189 668955713004314625 77 300 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2190 668932921458302977 63 284 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2191 668902994700836864 107 338 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2192 668892474547511297 164 422 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2193 668872652652679168 322 566 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2194 668852170888998912 184 479 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2195 668826086256599040 150 467 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2196 668815180734689280 291 610 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2197 668779399630725120 409 749 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2198 668655139528511488 233 562 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2199 668645506898350081 588 962 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2200 668643542311546881 576 939 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2201 668641109086707712 573 1145 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2202 668636665813057536 528 1114 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2203 668633411083464705 1788 3024 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2204 668631377374486528 349 763 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2205 668627278264475648 123 341 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2206 668625577880875008 140 417 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2207 668623201287675904 851 1551 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2208 668620235289837568 45 211 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2209 668614819948453888 341 654 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2210 668587383441514497 1174 1760 3201014 104 <a href="http://vine.co" rel="nofollow">Vine -... Original Tweet
2211 668567822092664832 62 265 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2212 668544745690562560 250 561 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2213 668542336805281792 231 497 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2214 668537837512433665 79 265 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2215 668528771708952576 242 496 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2216 668507509523615744 116 345 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2217 668496999348633600 146 436 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2218 668484198282485761 253 453 3201014 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2219 668480044826800133 162 491 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2220 668466899341221888 560 936 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2221 668297328638447616 319 656 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2222 668291999406125056 34 264 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2223 668286279830867968 149 535 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2224 668274247790391296 248 886 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2225 668268907921326080 261 592 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2226 668256321989451776 667 1385 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2227 668248472370458624 523 1056 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2228 668237644992782336 3100 6614 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2229 668226093875376128 115 323 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2230 668221241640230912 215 537 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2231 668204964695683073 206 586 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2232 668190681446379520 210 696 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2233 668171859951755264 208 525 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2234 668154635664932864 336 522 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2235 668142349051129856 306 592 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2236 668113020489474048 265 709 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2237 667937095915278337 866 1356 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2238 667924896115245057 119 318 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2239 667915453470232577 59 222 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2240 667911425562669056 329 523 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2241 667902449697558528 396 905 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2242 667886921285246976 1180 2011 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2243 667885044254572545 530 868 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2244 667878741721415682 127 409 3201015 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2245 667873844930215936 440 667 3201016 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2246 667866724293877760 1110 3172 3201016 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2247 667861340749471744 86 253 3201016 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2248 667832474953625600 68 303 3201016 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2249 667806454573760512 535 1111 3201016 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2250 667801013445750784 101 346 3201016 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2251 667793409583771648 358 736 3201016 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2252 667782464991965184 261 434 3201016 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2253 667773195014021121 61 243 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2254 667766675769573376 243 476 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2255 667728196545200128 162 398 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2256 667724302356258817 341 517 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2257 667550904950915073 37 0 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Retweet
2258 667550882905632768 34 0 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Retweet
2259 667549055577362432 2454 6138 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2260 667546741521195010 138 355 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2261 667544320556335104 568 917 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2262 667538891197542400 72 220 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2263 667534815156183040 576 866 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2264 667530908589760512 264 501 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2265 667524857454854144 1198 1798 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2266 667517642048163840 203 389 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2267 667509364010450944 2272 7148 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2268 667502640335572993 231 563 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2269 667495797102141441 294 565 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2270 667491009379606528 242 559 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2271 667470559035432960 102 273 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2272 667455448082227200 66 203 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2273 667453023279554560 96 327 3201016 104 <a href="http://twitter.com" rel="nofollow">Tw... Original Tweet
2274 667443425659232256 620 833 3201016 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2275 667437278097252352 257 483 3201016 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2276 667435689202614272 89 326 3201016 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2277 667405339315146752 234 489 3201016 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2278 667393430834667520 60 211 3201016 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2279 667369227918143488 173 385 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2280 667211855547486208 258 516 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2281 667200525029539841 282 658 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2282 667192066997374976 115 414 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2283 667188689915760640 449 784 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2284 667182792070062081 6618 15075 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2285 667177989038297088 58 200 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2286 667176164155375616 484 640 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2287 667174963120574464 88 262 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2288 667171260800061440 97 235 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2289 667165590075940865 1241 2819 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2290 667160273090932737 66 268 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2291 667152164079423490 18285 49720 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2292 667138269671505920 2387 4851 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2293 667119796878725120 135 346 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2294 667090893657276420 132 349 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2295 667073648344346624 134 425 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2296 667070482143944705 14 88 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2297 667065535570550784 51 175 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2298 667062181243039745 57 227 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2299 667044094246576128 54 198 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2300 667012601033924608 237 471 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2301 666996132027977728 102 258 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2302 666983947667116034 1040 2679 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2303 666837028449972224 584 857 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2304 666835007768551424 83 222 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2305 666826780179869698 105 266 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2306 666817836334096384 267 540 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2307 666804364988780544 95 250 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2308 666786068205871104 521 800 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2309 666781792255496192 211 404 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2310 666776908487630848 186 368 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2311 666739327293083650 71 244 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2312 666701168228331520 234 449 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2313 666691418707132416 51 196 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2314 666649482315059201 608 923 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2315 666644823164719104 88 238 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2316 666454714377183233 223 545 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2317 666447344410484738 23 107 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2318 666437273139982337 52 131 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2319 666435652385423360 54 170 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2320 666430724426358785 204 330 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2321 666428276349472768 90 171 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2322 666421158376562688 118 327 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2323 666418789513326592 48 129 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2324 666411507551481857 339 459 3201017 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2325 666407126856765440 44 113 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2326 666396247373291520 92 172 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2327 666373753744588802 100 194 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2328 666362758909284353 595 804 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2329 666353288456101888 77 229 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2330 666345417576210432 146 307 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2331 666337882303524864 96 204 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2332 666293911632134144 368 522 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2333 666287406224695296 71 152 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2334 666273097616637952 82 184 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2335 666268910803644416 37 108 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2336 666104133288665088 6871 14765 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2337 666102155909144576 16 81 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2338 666099513787052032 73 164 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2339 666094000022159362 79 169 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2340 666082916733198337 47 121 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2341 666073100786774016 174 335 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2342 666071193221509120 67 154 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2343 666063827256086533 232 496 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2344 666058600524156928 61 115 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2345 666057090499244032 146 304 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2346 666055525042405380 261 448 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2347 666051853826850816 879 1253 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2348 666050758794694657 60 136 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2349 666049248165822465 41 111 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2350 666044226329800704 147 311 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2351 666033412701032449 47 128 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2352 666029285002620928 48 132 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2353 666020888022790149 532 2535 3201018 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
In [21]:
# Returning df view to standard in order to save memory
pd.reset_option("all", silent=True)

Programatic Assessment¶

In [22]:
df_werated.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2356 entries, 0 to 2355
Data columns (total 17 columns):
 #   Column                      Non-Null Count  Dtype  
---  ------                      --------------  -----  
 0   tweet_id                    2356 non-null   int64  
 1   in_reply_to_status_id       78 non-null     float64
 2   in_reply_to_user_id         78 non-null     float64
 3   timestamp                   2356 non-null   object 
 4   source                      2356 non-null   object 
 5   text                        2356 non-null   object 
 6   retweeted_status_id         181 non-null    float64
 7   retweeted_status_user_id    181 non-null    float64
 8   retweeted_status_timestamp  181 non-null    object 
 9   expanded_urls               2297 non-null   object 
 10  rating_numerator            2356 non-null   int64  
 11  rating_denominator          2356 non-null   int64  
 12  name                        2356 non-null   object 
 13  doggo                       2356 non-null   object 
 14  floofer                     2356 non-null   object 
 15  pupper                      2356 non-null   object 
 16  puppo                       2356 non-null   object 
dtypes: float64(4), int64(3), object(10)
memory usage: 313.0+ KB
In [23]:
# Looking for duplicated values
df_werated.tweet_id.duplicated().sum()
Out[23]:
0
In [24]:
# Checking the profile of the columns that should remain numeric
df_werated[["rating_numerator", "rating_denominator"]].describe()
Out[24]:
rating_numerator rating_denominator
count 2356.000000 2356.000000
mean 13.126486 10.455433
std 45.876648 6.745237
min 0.000000 0.000000
25% 10.000000 10.000000
50% 11.000000 10.000000
75% 12.000000 10.000000
max 1776.000000 170.000000
In [25]:
df_werated.query("rating_denominator > 10").text.shape[0]
Out[25]:
20
In [26]:
for i in df_werated.query("rating_denominator > 10").index:
    print(f"row: {i}", "-->", df_werated.text[i])
row: 342 --> @docmisterio account started on 11/15/15
row: 433 --> The floofs have been released I repeat the floofs have been released. 84/70 https://t.co/NIYC820tmd
row: 784 --> RT @dog_rates: After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https:/…
row: 902 --> Why does this never happen at my front door... 165/150 https://t.co/HmwrdfEfUE
row: 1068 --> After so many requests, this is Bretagne. She was the last surviving 9/11 search dog, and our second ever 14/10. RIP https://t.co/XAVDNDaVgQ
row: 1120 --> Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once https://t.co/yGQI3He3xv
row: 1165 --> Happy 4/20 from the squad! 13/10 for all https://t.co/eV1diwds8a
row: 1202 --> This is Bluebert. He just saw that both #FinalFur match ups are split 50/50. Amazed af. 11/10 https://t.co/Kky1DPG4iq
row: 1228 --> Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody https://t.co/mpvaVxKmc1
row: 1254 --> Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 https://t.co/0eb7R1Om12
row: 1274 --> From left to right:
Cletus, Jerome, Alejandro, Burp, &amp; Titson
None know where camera is. 45/50 would hug all at once https://t.co/sedre1ivTK
row: 1351 --> Here is a whole flock of puppers.  60/50 I'll take the lot https://t.co/9dpcw6MdWa
row: 1433 --> Happy Wednesday here's a bucket of pups. 44/40 would pet all at once https://t.co/HppvrYuamZ
row: 1598 --> Yes I do realize a rating of 4/20 would've been fitting. However, it would be unjust to give these cooperative pups that low of a rating
row: 1634 --> Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3
row: 1635 --> Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 https://t.co/1zfnTJLt55
row: 1662 --> This is Darrel. He just robbed a 7/11 and is in a high speed police chase. Was just spotted by the helicopter 10/10 https://t.co/7EsP8LmSp5
row: 1663 --> I'm aware that I could've said 20/16, but here at WeRateDogs we are very professional. An inconsistent rating scale is simply irresponsible
row: 1779 --> IT'S PUPPERGEDDON. Total of 144/120 ...I think https://t.co/ZanVtAtvIq
row: 1843 --> Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once https://t.co/y93p6FLvVw
In [27]:
df_werated.iloc[[784, 1202, 1662], :][
    ["tweet_id", "rating_numerator", "rating_denominator"]
]
Out[27]:
tweet_id rating_numerator rating_denominator
784 775096608509886464 9 11
1202 716439118184652801 50 50
1662 682962037429899265 7 11

Unfortunately the cases of the tweets above are situations which is not possible to fix programatically (At least not with 100% success), however, it will be corrected manually to the information provided in the text. To facilitate the job, a df will be created to help in following which tweets to correct

In [28]:
df_tweets_to_correct = pd.DataFrame(
    {
        "tweet_id": ["775096608509886464", "716439118184652801", "682962037429899265"],
        "new_numerator": [14, 11, 10],
        "new_denominator": [10, 10, 10],
    }
)
In [29]:
df_werated.rating_numerator.value_counts()
Out[29]:
12      558
11      464
10      461
13      351
9       158
8       102
7        55
14       54
5        37
6        32
3        19
4        17
2         9
1         9
75        2
15        2
420       2
0         2
80        1
144       1
17        1
26        1
20        1
121       1
143       1
44        1
60        1
45        1
50        1
99        1
204       1
1776      1
165       1
666       1
27        1
182       1
24        1
960       1
84        1
88        1
Name: rating_numerator, dtype: int64
In [30]:
df_werated.query("rating_numerator >= 100").text.shape[0]
Out[30]:
11
In [31]:
df_werated.query("rating_numerator < 10").text.shape[0]
Out[31]:
440
In [32]:
for i in df_werated.query("rating_numerator >= 100").index:
    print(f"row: {i}", "-->", df_werated.text[i], "--", df_werated.rating_numerator[i])
row: 188 --> @dhmontgomery We also gave snoop dogg a 420/10 but I think that predated your research -- 420
row: 189 --> @s8n You tried very hard to portray this good boy as not so good, but you have ultimately failed. His goodness shines through. 666/10 -- 666
row: 290 --> @markhoppus 182/10 -- 182
row: 313 --> @jonnysun @Lin_Manuel ok jomny I know you're excited but 960/00 isn't a valid rating, 13/10 is tho -- 960
row: 902 --> Why does this never happen at my front door... 165/150 https://t.co/HmwrdfEfUE -- 165
row: 979 --> This is Atticus. He's quite simply America af. 1776/10 https://t.co/GRXwMxLBkh -- 1776
row: 1120 --> Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once https://t.co/yGQI3He3xv -- 204
row: 1634 --> Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3 -- 143
row: 1635 --> Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 https://t.co/1zfnTJLt55 -- 121
row: 1779 --> IT'S PUPPERGEDDON. Total of 144/120 ...I think https://t.co/ZanVtAtvIq -- 144
row: 2074 --> After so many requests... here you go.

Good dogg. 420/10 https://t.co/yfAAo1gdeY -- 420
In [33]:
# Checking if there is decimal numerators in the text

df_werated.text.str.findall("\d+\.\d+\/\d+").sum()
Out[33]:
['13.5/10', '9.75/10', '9.75/10', '11.27/10', '9.5/10', '11.26/10']
In [34]:
# Checking if there is decimal denominators in the text as well
df_werated.text.str.findall("\d+/\d+\.\d+").sum()
Out[34]:
[]
In [35]:
# The fun of this site is on numerators above 10. Let's get a sample to see how they look like in the text
for i in df_werated.query("rating_numerator < 10").sample(5).index:
    try:
        id = df_werated.tweet_id[i]
        url = df_img_pred.query("tweet_id == @id").jpg_url.values[0]
        print(f"row: {i}", "-->", df_werated.text[i])
        display(Image(url, width=150, height=150))
    except:
        print(f"row: {i}", "-->", df_werated.text[i], "\n", "No Image to display")
row: 1734 --> This pup's name is Sabertooth (parents must be cool). Ears for days. Jumps unannounced. 9/10 would pet diligently https://t.co/iazoiNUviP
row: 1837 --> "Yes hello I'ma just snag this here toasted bagel real quick. carry on." 9/10 https://t.co/Cuz0Osnekp
row: 936 --> This is Hank. He's mischievous af. Doesn't even know what he was trying to do here. 8/10 quit the shit Hank damn https://t.co/3r7wjfsXHc
row: 1378 --> This is Yoda. He's a Zimbabwean Rutabaga. Freaks out if u stop scratching his belly. Incredibly self-centered. 9/10 https://t.co/yVdMsVYHIx
row: 485 --> RT @dog_rates: Meet Beau &amp; Wilbur. Wilbur stole Beau's bed from him. Wilbur now has so much room for activities. 9/10 for both pups https:/… 
 No Image to display
In [36]:
# Checking for suspicious names
df_werated.name.value_counts().head(20)
Out[36]:
None       745
a           55
Charlie     12
Cooper      11
Lucy        11
Oliver      11
Tucker      10
Penny       10
Lola        10
Winston      9
Bo           9
Sadie        8
the          8
Daisy        7
Buddy        7
Toby         7
an           7
Bailey       7
Leo          6
Oscar        6
Name: name, dtype: int64

Here is just a guess... I believe that all the correct names are written with the first letter capitalized and the incorrect ones start in lower case

In [37]:
set(df_werated[~df_werated.name.str[0].str.isupper()].name)
Out[37]:
{'a',
 'actually',
 'all',
 'an',
 'by',
 'getting',
 'his',
 'incredibly',
 'infuriating',
 'just',
 'life',
 'light',
 'mad',
 'my',
 'not',
 'officially',
 'old',
 'one',
 'quite',
 'space',
 'such',
 'the',
 'this',
 'unacceptable',
 'very'}

Apparently, a good hint. Will use this assumption to discard these names.

In [38]:
# Checking the column source
for e in df_werated.source.sample(3):
    print(e)
<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>
<a href="http://twitter.com/download/iphone" rel="nofollow">Twitter for iPhone</a>

This column contains three elements: url, rel (which I assume that is if the person is a follower or not) and the source of the tweet. From the Tidness point of view, this is not OK.

In [39]:
df_img_pred.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2075 entries, 0 to 2074
Data columns (total 12 columns):
 #   Column    Non-Null Count  Dtype  
---  ------    --------------  -----  
 0   tweet_id  2075 non-null   int64  
 1   jpg_url   2075 non-null   object 
 2   img_num   2075 non-null   int64  
 3   p1        2075 non-null   object 
 4   p1_conf   2075 non-null   float64
 5   p1_dog    2075 non-null   bool   
 6   p2        2075 non-null   object 
 7   p2_conf   2075 non-null   float64
 8   p2_dog    2075 non-null   bool   
 9   p3        2075 non-null   object 
 10  p3_conf   2075 non-null   float64
 11  p3_dog    2075 non-null   bool   
dtypes: bool(3), float64(3), int64(2), object(4)
memory usage: 152.1+ KB
In [40]:
df_img_pred.describe()
Out[40]:
tweet_id img_num p1_conf p2_conf p3_conf
count 2.075000e+03 2075.000000 2075.000000 2.075000e+03 2.075000e+03
mean 7.384514e+17 1.203855 0.594548 1.345886e-01 6.032417e-02
std 6.785203e+16 0.561875 0.271174 1.006657e-01 5.090593e-02
min 6.660209e+17 1.000000 0.044333 1.011300e-08 1.740170e-10
25% 6.764835e+17 1.000000 0.364412 5.388625e-02 1.622240e-02
50% 7.119988e+17 1.000000 0.588230 1.181810e-01 4.944380e-02
75% 7.932034e+17 1.000000 0.843855 1.955655e-01 9.180755e-02
max 8.924206e+17 4.000000 1.000000 4.880140e-01 2.734190e-01
In [41]:
df_img_pred.p1.value_counts().head(20)
Out[41]:
golden_retriever             150
Labrador_retriever           100
Pembroke                      89
Chihuahua                     83
pug                           57
chow                          44
Samoyed                       43
toy_poodle                    39
Pomeranian                    38
cocker_spaniel                30
malamute                      30
French_bulldog                26
miniature_pinscher            23
Chesapeake_Bay_retriever      23
seat_belt                     22
Siberian_husky                20
German_shepherd               20
Staffordshire_bullterrier     20
Cardigan                      19
web_site                      19
Name: p1, dtype: int64
In [42]:
df_img_pred.p2.value_counts().head(20)
Out[42]:
Labrador_retriever                104
golden_retriever                   92
Cardigan                           73
Chihuahua                          44
Pomeranian                         42
Chesapeake_Bay_retriever           41
French_bulldog                     41
toy_poodle                         37
cocker_spaniel                     34
miniature_poodle                   33
Siberian_husky                     33
beagle                             28
Pembroke                           27
Eskimo_dog                         27
collie                             27
kuvasz                             26
Italian_greyhound                  22
American_Staffordshire_terrier     21
Pekinese                           21
chow                               20
Name: p2, dtype: int64
In [43]:
df_img_pred.p3.value_counts().head(20)
Out[43]:
Labrador_retriever                79
Chihuahua                         58
golden_retriever                  48
Eskimo_dog                        38
kelpie                            35
kuvasz                            34
Staffordshire_bullterrier         32
chow                              32
beagle                            31
cocker_spaniel                    31
Pomeranian                        29
toy_poodle                        29
Pekinese                          29
Chesapeake_Bay_retriever          27
Great_Pyrenees                    27
Pembroke                          27
French_bulldog                    26
malamute                          26
American_Staffordshire_terrier    24
pug                               23
Name: p3, dtype: int64
In [44]:
df_img_pred.tweet_id.duplicated().sum()
Out[44]:
0
In [45]:
df_tweet_details.head()
Out[45]:
tweet_id retweet_count favorite_count followers_count friends_count source retweeted_status
0 892420643555336193 8853 39467 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
1 892177421306343426 6514 33819 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
2 891815181378084864 4328 25461 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
3 891689557279858688 8964 42908 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
4 891327558926688256 9774 41048 3200889 104 <a href="http://twitter.com/download/iphone" r... Original Tweet
In [46]:
df_tweet_details.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2354 entries, 0 to 2353
Data columns (total 7 columns):
 #   Column            Non-Null Count  Dtype 
---  ------            --------------  ----- 
 0   tweet_id          2354 non-null   int64 
 1   retweet_count     2354 non-null   int64 
 2   favorite_count    2354 non-null   int64 
 3   followers_count   2354 non-null   int64 
 4   friends_count     2354 non-null   int64 
 5   source            2354 non-null   object
 6   retweeted_status  2354 non-null   object
dtypes: int64(5), object(2)
memory usage: 128.9+ KB
In [47]:
df_tweet_details.describe()
Out[47]:
tweet_id retweet_count favorite_count followers_count friends_count
count 2.354000e+03 2354.000000 2354.000000 2.354000e+03 2354.0
mean 7.426978e+17 3164.797366 8080.968564 3.200942e+06 104.0
std 6.852812e+16 5284.770364 11814.771334 4.457302e+01 0.0
min 6.660209e+17 0.000000 0.000000 3.200799e+06 104.0
25% 6.783975e+17 624.500000 1415.000000 3.200898e+06 104.0
50% 7.194596e+17 1473.500000 3603.500000 3.200945e+06 104.0
75% 7.993058e+17 3652.000000 10122.250000 3.200953e+06 104.0
max 8.924206e+17 79515.000000 132810.000000 3.201018e+06 104.0
In [48]:
df_tweet_details.tweet_id.duplicated().sum()
Out[48]:
0

Quality issues¶

Due to Completeness¶

  1. df_werated: There are some rows which are missing data in the column expanded_urls. Possibly this was an issue during the data extraction or these tweets are not from a picture rating. In the last case, these rows should be removed

Due to Validity¶

  1. df_werated: name incorrect or typo
  2. all tables: tweet_id shown as as int when should be as str
  3. df_werated: in_reply_to_status_id, in_reply_to_user_id, retweeted_status_id should be in string format
  4. Not all tweets are original. The columns retweeted_status_id, retweeted_status_user_id and retweeted_status_timestamp should have only NULL values
  5. df_img_pred: Some predictions are of other animals/objects than a dog, such as turtle or starfish

Due to Accurrancy¶

  1. df_werated: rating_numerator with decimal values. Replace by its correct value.
  2. df_werated: timestamp should be set as date and time
  3. df_werated: Correct the ratings of the tweets according as described in df_tweets_to_correct

Due to Consistency¶

  1. df_img_pred: p1, p2 and p3 not following a case logic: sometimes title case, sometimes lower case. It should be all Title case and removing the _ between names
  2. df_werated: rating_denominator with strange values (outlier values). It was supposed to be 10

Tidiness issues¶

  1. df_werated: the column source showing in html tags. It should be diveded by url_ref, rel and tweet_source
  2. df_werated: Columns doggo, floofer, pupper, puppo should be turn into a single column called dog_stage
  3. df_werated: Some columns will become unnecessary for analysis, so we should identify them and discard.
  4. df_tweet_details should be merged to df_werated for graphical analysis

Cleaning Data¶

In this section, clean all of the issues you documented while assessing.

Note: Make a copy of the original data before cleaning. Cleaning includes merging individual pieces of data according to the rules of tidy data. The result should be a high-quality and tidy master pandas DataFrame (or DataFrames, if appropriate).

In [49]:
df_werated_clean = df_werated.copy()
df_img_pred_clean = df_img_pred.copy()
df_tweet_details_clean = df_tweet_details.copy()

Due to Quality Issues¶

Issue #1: Correcting data types¶

Define:¶

a. Change tweet_id data type as str in all the tables
b. In the table df_werated: change the data type of the columnsin_reply_to_status_id, in_reply_to_user_id, retweeted_status_id to str
c. change timestamp datatype to date and time

Code¶

In [50]:
# Dealing with string columns
df_werated_clean["tweet_id"] = df_werated_clean["tweet_id"].astype(str)
df_img_pred_clean["tweet_id"] = df_img_pred_clean["tweet_id"].astype(str)
df_tweet_details_clean["tweet_id"] = df_tweet_details_clean["tweet_id"].astype(str)
In [51]:
df_werated_clean = df_werated_clean.fillna(
    value={
        "in_reply_to_status_id": 0.0,
        "in_reply_to_user_id": 0.0,
        "retweeted_status_id": 0.0,
        "retweeted_status_user_id": 0.0,
    },
    method=None,
)
In [52]:
df_werated_clean = df_werated_clean.astype(
    {
        "in_reply_to_status_id": "int64",
        "in_reply_to_user_id": "int64",
        "retweeted_status_id": "int64",
        "retweeted_status_user_id": "int64",
    }
)
In [53]:
df_werated_clean = df_werated_clean.astype(
    {
        "in_reply_to_status_id": "str",
        "in_reply_to_user_id": "str",
        "retweeted_status_id": "str",
        "retweeted_status_user_id": "str",
    }
)
In [54]:
cols = [
    "in_reply_to_status_id",
    "in_reply_to_user_id",
    "retweeted_status_id",
    "retweeted_status_user_id",
]
for c in cols:
    df_werated_clean[c] = df_werated_clean[c].replace({"0": np.NaN})
In [55]:
# Dealing with date and time columns
df_werated_clean["timestamp"] = pd.to_datetime(
    df_werated_clean["timestamp"]
).dt.tz_convert(None)

Test¶

In [56]:
df_werated_clean.dtypes
Out[56]:
tweet_id                              object
in_reply_to_status_id                 object
in_reply_to_user_id                   object
timestamp                     datetime64[ns]
source                                object
text                                  object
retweeted_status_id                   object
retweeted_status_user_id              object
retweeted_status_timestamp            object
expanded_urls                         object
rating_numerator                       int64
rating_denominator                     int64
name                                  object
doggo                                 object
floofer                               object
pupper                                object
puppo                                 object
dtype: object
In [57]:
df_img_pred_clean.tweet_id.dtypes
Out[57]:
dtype('O')
In [58]:
df_tweet_details_clean.tweet_id.dtypes
Out[58]:
dtype('O')

Issue #2: Retweets in the dataset¶

Define¶

Discard Retweets

Code¶

We only want original tweets here. Therefore, the column retweet_status_id should only have null values

In [59]:
df_werated_clean = df_werated_clean[df_werated_clean.retweeted_status_id.isnull()]
In [60]:
df_tweet_details_clean = df_tweet_details_clean.query(
    "retweeted_status == 'Original Tweet'"
)

Test¶

In [61]:
df_werated_clean.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2175 entries, 0 to 2355
Data columns (total 17 columns):
 #   Column                      Non-Null Count  Dtype         
---  ------                      --------------  -----         
 0   tweet_id                    2175 non-null   object        
 1   in_reply_to_status_id       78 non-null     object        
 2   in_reply_to_user_id         78 non-null     object        
 3   timestamp                   2175 non-null   datetime64[ns]
 4   source                      2175 non-null   object        
 5   text                        2175 non-null   object        
 6   retweeted_status_id         0 non-null      object        
 7   retweeted_status_user_id    0 non-null      object        
 8   retweeted_status_timestamp  0 non-null      object        
 9   expanded_urls               2117 non-null   object        
 10  rating_numerator            2175 non-null   int64         
 11  rating_denominator          2175 non-null   int64         
 12  name                        2175 non-null   object        
 13  doggo                       2175 non-null   object        
 14  floofer                     2175 non-null   object        
 15  pupper                      2175 non-null   object        
 16  puppo                       2175 non-null   object        
dtypes: datetime64[ns](1), int64(2), object(14)
memory usage: 305.9+ KB
In [62]:
df_tweet_details_clean.retweeted_status.value_counts()
Out[62]:
Original Tweet    2175
Name: retweeted_status, dtype: int64

Issue #3a: rows missing expanded urls¶

Define¶

Check the missing data rows and clean the records that do not correspond to an image rating, if that is the case

Code¶

In [63]:
df_werated_clean[df_werated_clean["expanded_urls"].isnull()]
Out[63]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls rating_numerator rating_denominator name doggo floofer pupper puppo
30 886267009285017600 886266357075128320 2281181600 2017-07-15 16:51:35 <a href="http://twitter.com/download/iphone" r... @NonWhiteHat @MayhewMayhem omg hello tanner yo... NaN NaN NaN NaN 12 10 None None None None None
55 881633300179243008 881607037314052096 47384430 2017-07-02 21:58:53 <a href="http://twitter.com/download/iphone" r... @roushfenway These are good dogs but 17/10 is ... NaN NaN NaN NaN 17 10 None None None None None
64 879674319642796034 879553827334172672 3105440746 2017-06-27 12:14:36 <a href="http://twitter.com/download/iphone" r... @RealKentMurphy 14/10 confirmed NaN NaN NaN NaN 14 10 None None None None None
113 870726314365509632 870726202742493184 16487760 2017-06-02 19:38:25 <a href="http://twitter.com/download/iphone" r... @ComplicitOwl @ShopWeRateDogs &gt;10/10 is res... NaN NaN NaN NaN 10 10 None None None None None
148 863427515083354112 863425645568774144 77596200 2017-05-13 16:15:35 <a href="http://twitter.com/download/iphone" r... @Jack_Septic_Eye I'd need a few more pics to p... NaN NaN NaN NaN 12 10 None None None None None
179 857214891891077121 857156678055342080 180670967 2017-04-26 12:48:51 <a href="http://twitter.com/download/iphone" r... @Marc_IRL pixelated af 12/10 NaN NaN NaN NaN 12 10 None None None None None
186 856288084350160898 856286004109553664 279280991 2017-04-23 23:26:03 <a href="http://twitter.com/download/iphone" r... @xianmcguire @Jenna_Marbles Kardashians wouldn... NaN NaN NaN NaN 14 10 None None None None None
188 855862651834028034 855861584463351808 194351775 2017-04-22 19:15:32 <a href="http://twitter.com/download/iphone" r... @dhmontgomery We also gave snoop dogg a 420/10... NaN NaN NaN NaN 420 10 None None None None None
189 855860136149123072 855858535607001088 13615722 2017-04-22 19:05:32 <a href="http://twitter.com/download/iphone" r... @s8n You tried very hard to portray this good ... NaN NaN NaN NaN 666 10 None None None None None
218 850333567704068097 850328818778820608 21955058 2017-04-07 13:04:55 <a href="http://twitter.com/download/iphone" r... @markhoppus MARK THAT DOG HAS SEEN AND EXPERIE... NaN NaN NaN NaN 13 10 None None None None None
228 848213670039564288 848212111729840128 4196983835 2017-04-01 16:41:12 <a href="http://twitter.com/download/iphone" r... Jerry just apuppologized to me. He said there ... NaN NaN NaN NaN 11 10 None None None None None
234 847617282490613760 847606175596138496 4196983835 2017-03-31 01:11:22 <a href="http://twitter.com/download/iphone" r... .@breaannanicolee PUPDATE: Cannon has a heart ... NaN NaN NaN NaN 13 10 None None None None None
274 840698636975636481 840698300298862592 840547864354918400 2017-03-11 22:59:09 <a href="http://twitter.com/download/iphone" r... @0_kelvin_0 &gt;10/10 is reserved for puppos s... NaN NaN NaN NaN 10 10 None None None None None
290 838150277551247360 838145498691194880 21955058 2017-03-04 22:12:52 <a href="http://twitter.com/download/iphone" r... @markhoppus 182/10 NaN NaN NaN NaN 182 10 None None None None None
291 838085839343206401 838085539362402304 2894131180 2017-03-04 17:56:49 <a href="http://twitter.com/download/iphone" r... @bragg6of8 @Andy_Pace_ we are still looking fo... NaN NaN NaN NaN 15 10 None None None None None
313 835246439529840640 835245984028504064 26259576 2017-02-24 21:54:03 <a href="http://twitter.com/download/iphone" r... @jonnysun @Lin_Manuel ok jomny I know you're e... NaN NaN NaN NaN 960 0 None None None None None
342 832088576586297345 832087547559997440 30582082 2017-02-16 04:45:50 <a href="http://twitter.com/download/iphone" r... @docmisterio account started on 11/15/15 NaN NaN NaN NaN 11 15 None None None None None
346 831926988323639298 831903044224835584 20683724 2017-02-15 18:03:45 <a href="http://twitter.com/download/iphone" r... @UNC can confirm 12/10 NaN NaN NaN NaN 12 10 None None None None None
375 828361771580813312 NaN NaN 2017-02-05 21:56:51 <a href="http://twitter.com" rel="nofollow">Tw... Beebop and Doobert should start a band 12/10 w... NaN NaN NaN NaN 12 10 None None None None None
387 826598799820865537 826598365270007808 4196983835 2017-02-01 01:11:25 <a href="http://twitter.com/download/iphone" r... I was going to do 007/10, but the joke wasn't ... NaN NaN NaN NaN 7 10 None None None None None
409 823333489516937216 823326389336244224 1582853809 2017-01-23 00:56:15 <a href="http://twitter.com/download/iphone" r... @HistoryInPics 13/10 NaN NaN NaN NaN 13 10 None None None None None
427 821153421864615936 821152592717697024 113211856 2017-01-17 00:33:26 <a href="http://twitter.com/download/iphone" r... @imgur for a polar bear tho I'd say 13/10 is a... NaN NaN NaN NaN 13 10 None None None None None
498 813130366689148928 813127251579564032 4196983835 2016-12-25 21:12:41 <a href="http://twitter.com/download/iphone" r... I've been informed by multiple sources that th... NaN NaN NaN NaN 12 10 None None None None None
513 811647686436880384 811627233043480576 4196983835 2016-12-21 19:01:02 <a href="http://twitter.com/download/iphone" r... PUPDATE: I've been informed that Augie was act... NaN NaN NaN NaN 11 10 None None None None None
570 801854953262350336 801854330672447488 11856342 2016-11-24 18:28:13 <a href="http://twitter.com/download/iphone" r... .@NBCSports OMG THE TINY HAT I'M GOING TO HAVE... NaN NaN NaN NaN 11 10 None None None None None
576 800859414831898624 800857954417262592 291859009 2016-11-22 00:32:18 <a href="http://twitter.com/download/iphone" r... @SkyWilliams doggo simply protecting you from ... NaN NaN NaN NaN 11 10 None doggo None None None
611 797165961484890113 797123751162839040 29166305 2016-11-11 19:55:50 <a href="http://twitter.com/download/iphone" r... @JODYHiGHROLLER it may be an 11/10 but what do... NaN NaN NaN NaN 11 10 None None None None None
701 786051337297522688 772743019447607296 730505014150582272 2016-10-12 03:50:17 <a href="http://twitter.com/download/iphone" r... 13/10 for breakdancing puppo @shibbnbot NaN NaN NaN NaN 13 10 None None None None puppo
707 785515384317313025 NaN NaN 2016-10-10 16:20:36 <a href="http://twitter.com/download/iphone" r... Today, 10/10, should be National Dog Rates Day NaN NaN NaN NaN 10 10 None None None None None
843 766714921925144576 766711819364888576 4196983835 2016-08-19 19:14:16 <a href="http://twitter.com/download/iphone" r... His name is Charley and he already has a new s... NaN NaN NaN NaN 13 10 None None None None None
857 763956972077010945 763865174553964544 15846407 2016-08-12 04:35:10 <a href="http://twitter.com/download/iphone" r... @TheEllenShow I'm not sure if you know this bu... NaN NaN NaN NaN 12 10 None doggo None None None
967 750381685133418496 750180498832404480 4717297476 2016-07-05 17:31:49 <a href="http://twitter.com/download/iphone" r... 13/10 such a good doggo\n@spaghemily NaN NaN NaN NaN 13 10 None doggo None None None
1005 747651430853525504 747648653817413632 4196983835 2016-06-28 04:42:46 <a href="http://twitter.com/download/iphone" r... Other pupper asked not to have his identity sh... NaN NaN NaN NaN 12 10 None None None pupper None
1080 738891149612572673 738411919896285184 358972768 2016-06-04 00:32:32 <a href="http://twitter.com/download/iphone" r... @mount_alex3 13/10 NaN NaN NaN NaN 13 10 None None None None None
1295 707983188426153984 707980065892667392 2319108198 2016-03-10 17:35:20 <a href="http://twitter.com/download/iphone" r... @serial @MrRoles OH MY GOD I listened to all o... NaN NaN NaN NaN 12 10 None None None None None
1345 704491224099647488 704485744639909888 28785486 2016-03-01 02:19:31 <a href="http://twitter.com/download/iphone" r... 13/10 hero af\n@ABC NaN NaN NaN NaN 13 10 None None None None None
1445 696518437233913856 NaN NaN 2016-02-08 02:18:30 <a href="http://twitter.com/download/iphone" r... Oh my god 10/10 for every little hot dog pupper NaN NaN NaN NaN 10 10 None None None pupper None
1446 696490539101908992 696488710901260288 4196983835 2016-02-08 00:27:39 <a href="http://twitter.com/download/iphone" r... After reading the comments I may have overesti... NaN NaN NaN NaN 1 10 None None None None None
1474 693644216740769793 693642232151285760 4196983835 2016-01-31 03:57:23 <a href="http://twitter.com/download/iphone" r... BREAKING PUPDATE: I've just been notified that... NaN NaN NaN NaN 10 10 None None None None None
1479 693582294167244802 693572215938367488 1198988510 2016-01-30 23:51:19 <a href="http://twitter.com/download/iphone" r... Personally I'd give him an 11/10. Not sure why... NaN NaN NaN NaN 11 10 None None None None None
1497 692423280028966913 692417313023332352 4196983835 2016-01-27 19:05:49 <a href="http://twitter.com/download/iphone" r... PUPDATE: just noticed this dog has some extra ... NaN NaN NaN NaN 9 10 None None None None None
1523 690607260360429569 690341253549002752 467036706 2016-01-22 18:49:36 <a href="http://twitter.com/download/iphone" r... 12/10 @LightningHoltt NaN NaN NaN NaN 12 10 None None None None None
1598 686035780142297088 686034024800862208 4196983835 2016-01-10 04:04:10 <a href="http://twitter.com/download/iphone" r... Yes I do realize a rating of 4/20 would've bee... NaN NaN NaN NaN 4 20 None None None None None
1605 685681090388975616 685547936038666240 4196983835 2016-01-09 04:34:45 <a href="http://twitter.com/download/iphone" r... Jack deserves another round of applause. If yo... NaN NaN NaN NaN 14 10 None None None None None
1618 684969860808454144 684959798585110528 4196983835 2016-01-07 05:28:35 <a href="http://twitter.com/download/iphone" r... For those who claim this is a goat, u are wron... NaN NaN NaN NaN 5 10 None None None None None
1663 682808988178739200 682788441537560576 4196983835 2016-01-01 06:22:03 <a href="http://twitter.com/download/iphone" r... I'm aware that I could've said 20/16, but here... NaN NaN NaN NaN 20 16 None None None None None
1689 681340665377193984 681339448655802368 4196983835 2015-12-28 05:07:27 <a href="http://twitter.com/download/iphone" r... I've been told there's a slight possibility he... NaN NaN NaN NaN 5 10 None None None None None
1774 678023323247357953 678021115718029312 4196983835 2015-12-19 01:25:31 <a href="http://twitter.com/download/iphone" r... After getting lost in Reese's eyes for several... NaN NaN NaN NaN 13 10 None None None None None
1819 676590572941893632 676588346097852416 4196983835 2015-12-15 02:32:17 <a href="http://twitter.com/download/iphone" r... After some outrage from the crowd. Bubbles is ... NaN NaN NaN NaN 7 10 None None None None None
1844 675849018447167488 675845657354215424 4196983835 2015-12-13 01:25:37 <a href="http://twitter.com/download/iphone" r... This dog is being demoted to a 9/10 for not we... NaN NaN NaN NaN 9 10 None None None None None
1895 674742531037511680 674739953134403584 4196983835 2015-12-10 00:08:50 <a href="http://twitter.com/download/iphone" r... Some clarification is required. The dog is sin... NaN NaN NaN NaN 11 10 None None None None None
1905 674606911342424069 674468880899788800 4196983835 2015-12-09 15:09:55 <a href="http://twitter.com/download/iphone" r... The 13/10 also takes into account this impecca... NaN NaN NaN NaN 13 10 None None None None None
1914 674330906434379776 665814696700723200 16374678 2015-12-08 20:53:11 <a href="http://twitter.com/download/iphone" r... 13/10\n@ABC7 NaN NaN NaN NaN 13 10 None None None None None
1940 673716320723169284 673715861853720576 4196983835 2015-12-07 04:11:02 <a href="http://twitter.com/download/iphone" r... The millennials have spoken and we've decided ... NaN NaN NaN NaN 1 10 None None None None None
2038 671550332464455680 671544874165002240 4196983835 2015-12-01 04:44:10 <a href="http://twitter.com/download/iphone" r... After 22 minutes of careful deliberation this ... NaN NaN NaN NaN 1 10 None None None None None
2149 669684865554620416 669354382627049472 4196983835 2015-11-26 01:11:28 <a href="http://twitter.com/download/iphone" r... After countless hours of research and hundreds... NaN NaN NaN NaN 11 10 None None None None None
2189 668967877119254528 668920717132582912 21435658 2015-11-24 01:42:25 <a href="http://twitter.com/download/iphone" r... 12/10 good shit Bubka\n@wane15 NaN NaN NaN NaN 12 10 None None None None None
2298 667070482143944705 667065535570550784 4196983835 2015-11-18 20:02:51 <a href="http://twitter.com/download/iphone" r... After much debate this dog is being upgraded t... NaN NaN NaN NaN 10 10 None None None None None
In [64]:
df_werated_clean[df_werated_clean["expanded_urls"].isnull()].info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 58 entries, 30 to 2298
Data columns (total 17 columns):
 #   Column                      Non-Null Count  Dtype         
---  ------                      --------------  -----         
 0   tweet_id                    58 non-null     object        
 1   in_reply_to_status_id       55 non-null     object        
 2   in_reply_to_user_id         55 non-null     object        
 3   timestamp                   58 non-null     datetime64[ns]
 4   source                      58 non-null     object        
 5   text                        58 non-null     object        
 6   retweeted_status_id         0 non-null      object        
 7   retweeted_status_user_id    0 non-null      object        
 8   retweeted_status_timestamp  0 non-null      object        
 9   expanded_urls               0 non-null      object        
 10  rating_numerator            58 non-null     int64         
 11  rating_denominator          58 non-null     int64         
 12  name                        58 non-null     object        
 13  doggo                       58 non-null     object        
 14  floofer                     58 non-null     object        
 15  pupper                      58 non-null     object        
 16  puppo                       58 non-null     object        
dtypes: datetime64[ns](1), int64(2), object(14)
memory usage: 8.2+ KB

One thing is interesting about these records: Most of them are marked as in_reply_to_status_id while the big majority of the original tweets don't have this field filled in. This can be an indication that, if this field is not empty, the tweet is not valid as a original tweet. Let's check the text to confirm if we should keep these records:

In [65]:
df_miss_expanded_url = (
    df_werated_clean[df_werated_clean["expanded_urls"].isnull()]
    .copy()
    .reset_index(drop=True)
)
In [66]:
for i in df_miss_expanded_url.index:
    print(df_miss_expanded_url.tweet_id[i], "-->", df_miss_expanded_url.text[i])
886267009285017600 --> @NonWhiteHat @MayhewMayhem omg hello tanner you are a scary good boy 12/10 would pet with extreme caution
881633300179243008 --> @roushfenway These are good dogs but 17/10 is an emotional impulse rating. More like 13/10s
879674319642796034 --> @RealKentMurphy 14/10 confirmed
870726314365509632 --> @ComplicitOwl @ShopWeRateDogs &gt;10/10 is reserved for dogs
863427515083354112 --> @Jack_Septic_Eye I'd need a few more pics to polish a full analysis, but based on the good boy content above I'm leaning towards 12/10
857214891891077121 --> @Marc_IRL pixelated af 12/10
856288084350160898 --> @xianmcguire @Jenna_Marbles Kardashians wouldn't be famous if as a society we didn't place enormous value on what they do. The dogs are very deserving of their 14/10
855862651834028034 --> @dhmontgomery We also gave snoop dogg a 420/10 but I think that predated your research
855860136149123072 --> @s8n You tried very hard to portray this good boy as not so good, but you have ultimately failed. His goodness shines through. 666/10
850333567704068097 --> @markhoppus MARK THAT DOG HAS SEEN AND EXPERIENCED MANY THINGS. PROBABLY LOST OTHER EAR DOING SOMETHING HEROIC. 13/10 HUG THE DOG HOPPUS
848213670039564288 --> Jerry just apuppologized to me. He said there was no ill-intent to the slippage. I overreacted I admit. Pupgraded to an 11/10 would pet
847617282490613760 --> .@breaannanicolee PUPDATE: Cannon has a heart on his nose. Pupgraded to a 13/10
840698636975636481 --> @0_kelvin_0 &gt;10/10 is reserved for puppos sorry Kevin
838150277551247360 --> @markhoppus 182/10
838085839343206401 --> @bragg6of8 @Andy_Pace_ we are still looking for the first 15/10
835246439529840640 --> @jonnysun @Lin_Manuel ok jomny I know you're excited but 960/00 isn't a valid rating, 13/10 is tho
832088576586297345 --> @docmisterio account started on 11/15/15
831926988323639298 --> @UNC can confirm 12/10
828361771580813312 --> Beebop and Doobert should start a band 12/10 would listen
826598799820865537 --> I was going to do 007/10, but the joke wasn't worth the &lt;10 rating
823333489516937216 --> @HistoryInPics 13/10
821153421864615936 --> @imgur for a polar bear tho I'd say 13/10 is appropriate
813130366689148928 --> I've been informed by multiple sources that this is actually a dog elf who's tired from helping Santa all night. Pupgraded to 12/10
811647686436880384 --> PUPDATE: I've been informed that Augie was actually bringing his family these flowers when he tripped. Very good boy. Pupgraded to 11/10
801854953262350336 --> .@NBCSports OMG THE TINY HAT I'M GOING TO HAVE TO SAY 11/10 NBC
800859414831898624 --> @SkyWilliams doggo simply protecting you from evil that which you cannot see. 11/10 would give extra pets
797165961484890113 --> @JODYHiGHROLLER it may be an 11/10 but what do I know 😉
786051337297522688 --> 13/10 for breakdancing puppo @shibbnbot
785515384317313025 --> Today, 10/10, should be National Dog Rates Day
766714921925144576 --> His name is Charley and he already has a new set of wheels thanks to donations. I heard his top speed was also increased. 13/10 for Charley
763956972077010945 --> @TheEllenShow I'm not sure if you know this but that doggo right there is a 12/10
750381685133418496 --> 13/10 such a good doggo
@spaghemily
747651430853525504 --> Other pupper asked not to have his identity shared. Probably just embarrassed about the headbutt. Also 12/10 it'll be ok mystery pup
738891149612572673 --> @mount_alex3 13/10
707983188426153984 --> @serial @MrRoles OH MY GOD I listened to all of season 1 during a single road trip. I love you guys! I can confirm Bernie's 12/10 rating :)
704491224099647488 --> 13/10 hero af
@ABC
696518437233913856 --> Oh my god 10/10 for every little hot dog pupper
696490539101908992 --> After reading the comments I may have overestimated this pup. Downgraded to a 1/10. Please forgive me
693644216740769793 --> BREAKING PUPDATE: I've just been notified that (if in U.S.) this dog appears to be operating the vehicle. Upgraded to 10/10. Skilled af
693582294167244802 --> Personally I'd give him an 11/10. Not sure why you think you're qualified to rate such a stellar pup.
@CommonWhiteGirI
692423280028966913 --> PUPDATE: just noticed this dog has some extra legs. Very advanced. Revolutionary af. Upgraded to a 9/10
690607260360429569 --> 12/10 @LightningHoltt
686035780142297088 --> Yes I do realize a rating of 4/20 would've been fitting. However, it would be unjust to give these cooperative pups that low of a rating
685681090388975616 --> Jack deserves another round of applause. If you missed this earlier today I strongly suggest reading it. Wonderful first 14/10 🐶❤️
684969860808454144 --> For those who claim this is a goat, u are wrong. It is not the Greatest Of All Time. The rating of 5/10 should have made that clear. Thank u
682808988178739200 --> I'm aware that I could've said 20/16, but here at WeRateDogs we are very professional. An inconsistent rating scale is simply irresponsible
681340665377193984 --> I've been told there's a slight possibility he's checking his mirror. We'll bump to 9.5/10. Still a menace
678023323247357953 --> After getting lost in Reese's eyes for several minutes we're going to upgrade him to a 13/10
676590572941893632 --> After some outrage from the crowd. Bubbles is being upgraded to a 7/10. That's as high as I'm going. Thank you
675849018447167488 --> This dog is being demoted to a 9/10 for not wearing a helmet while riding. Gotta stay safe out there. Thank you
674742531037511680 --> Some clarification is required. The dog is singing Cher and that is more than worthy of an 11/10. Thank you
674606911342424069 --> The 13/10 also takes into account this impeccable yard. Louis is great but the future dad in me can't ignore that luscious green grass
674330906434379776 --> 13/10
@ABC7
673716320723169284 --> The millennials have spoken and we've decided to immediately demote to a 1/10. Thank you
671550332464455680 --> After 22 minutes of careful deliberation this dog is being demoted to a 1/10. The longer you look at him the more terrifying he becomes
669684865554620416 --> After countless hours of research and hundreds of formula alterations we have concluded that Dug should be bumped to an 11/10
668967877119254528 --> 12/10 good shit Bubka
@wane15
667070482143944705 --> After much debate this dog is being upgraded to 10/10. I repeat 10/10
In [67]:
# Checking if there is an actual prediction for these tweets:
df_img_pred_clean[df_img_pred_clean.tweet_id.isin(list(df_miss_expanded_url.tweet_id))]
Out[67]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog

As noticed above, the texts do not correspond to an actual rating and there is no prediction for these records.
Therefore, these records will be discarded.

In [68]:
df_werated_clean = df_werated_clean.query("expanded_urls == expanded_urls")

Test¶

In [69]:
df_werated_clean.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2117 entries, 0 to 2355
Data columns (total 17 columns):
 #   Column                      Non-Null Count  Dtype         
---  ------                      --------------  -----         
 0   tweet_id                    2117 non-null   object        
 1   in_reply_to_status_id       23 non-null     object        
 2   in_reply_to_user_id         23 non-null     object        
 3   timestamp                   2117 non-null   datetime64[ns]
 4   source                      2117 non-null   object        
 5   text                        2117 non-null   object        
 6   retweeted_status_id         0 non-null      object        
 7   retweeted_status_user_id    0 non-null      object        
 8   retweeted_status_timestamp  0 non-null      object        
 9   expanded_urls               2117 non-null   object        
 10  rating_numerator            2117 non-null   int64         
 11  rating_denominator          2117 non-null   int64         
 12  name                        2117 non-null   object        
 13  doggo                       2117 non-null   object        
 14  floofer                     2117 non-null   object        
 15  pupper                      2117 non-null   object        
 16  puppo                       2117 non-null   object        
dtypes: datetime64[ns](1), int64(2), object(14)
memory usage: 297.7+ KB

There are still some records with reply_status_id filled in, but these records do have an url. Let's check how they look like:

Issue #3b: Handle the remaining rows with missing expanded urls¶

Define¶

Check the missing data rows and clean the records that do not correspond to an image rating, if that is the case

Code¶

In [70]:
df_img_pred_clean[
    df_img_pred_clean.tweet_id.isin(
        list(
            df_werated_clean[
                ~df_werated_clean["in_reply_to_status_id"].isnull()
            ].tweet_id
        )
    )
].shape
Out[70]:
(23, 12)
In [71]:
df_werated_clean[
    ~df_werated_clean["in_reply_to_status_id"].isnull()
].in_reply_to_user_id.value_counts()
Out[71]:
4196983835    23
Name: in_reply_to_user_id, dtype: int64

All the records are related to a photo prediction, therefore, valid records. Curiously, it is replying the same user id.

Checking this user ID in twitterWhich turns out to be @dog_rates.

Therefore, we keep these records.

Test¶

In [72]:
# Prooving that the texts are of an image rating
df_rep_tweet = df_werated_clean[~df_werated_clean["in_reply_to_user_id"].isnull()]
for i in df_rep_tweet.index:
    print(df_rep_tweet.tweet_id[i], "-->", df_rep_tweet.text[i])
863079547188785154 --> Ladies and gentlemen... I found Pipsy. He may have changed his name to Pablo, but he never changed his love for the sea. Pupgraded to 14/10 https://t.co/lVU5GyNFen
856526610513747968 --> THIS IS CHARLIE, MARK. HE DID JUST WANT TO SAY HI AFTER ALL. PUPGRADED TO A 14/10. WOULD BE AN HONOR TO FLY WITH https://t.co/p1hBHCmWnA
844979544864018432 --> PUPDATE: I'm proud to announce that Toby is 236 days sober. Pupgraded to a 13/10. We're all very proud of you, Toby https://t.co/a5OaJeRl9B
802265048156610565 --> Like doggo, like pupper version 2. Both 11/10 https://t.co/9IxWAXFqze
746906459439529985 --> PUPDATE: can't see any. Even if I could, I couldn't reach them to pet. 0/10 much disappointment https://t.co/c7WXaB2nqX
746818907684614144 --> Guys... Dog Jesus 2.0
13/10 buoyant af https://t.co/CuNA7OwfKQ
729838605770891264 --> "Challenge completed" 
(pupgraded to 12/10) https://t.co/85dTK7XCXB
705786532653883392 --> Seriously, add us 🐶 11/10 for sad wet pupper https://t.co/xwPE9faVZR
704871453724954624 --> I found a forest Pipsy. 12/10 https://t.co/mIQ1KoVsmU
703425003149250560 --> Really guys? Again? I know this is a rare Albanian Bingo Seal, but we only rate dogs. Only send in dogs... 9/10 https://t.co/6JYLpUmBrC
695767669421768709 --> If you are aware of who is making these please let me know. 13/10 vroom vroom https://t.co/U0D1sbIDrG
694356675654983680 --> This pupper only appears through the hole of a Funyun. Much like Phineas, this one is also mysterious af. 10/10 https://t.co/SQsEBWxPyG
692142790915014657 --> These are some pictures of Teddy that further justify his 13/10 rating. Please enjoy https://t.co/tDkJAnQsbQ
684538444857667585 --> After watching this video, we've determined that Pippa will be upgraded to a 12/10. Please enjoy https://t.co/IKoRK4yoxV
684225744407494656 --> Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3
675870721063669760 --> &amp; this is Yoshi. Another world record contender 11/10 (what the hell is happening why are there so many contenders?) https://t.co/QG708dDNH6
675707330206547968 --> We've got ourselves a battle here. Watch out Reggie. 11/10 https://t.co/ALJvbtcwf0
675349384339542016 --> Yea I lied. Here's more. All 13/10 https://t.co/ZQZf2U4xCP
674999807681908736 --> Ok last one of these. I may try to make some myself. Anyway here ya go. 13/10 https://t.co/i9CDd1oEu8
674793399141146624 --> I have found another. 13/10 https://t.co/HwroPYv8pY
674754018082705410 --> Just received another perfect photo of dogs and the sunset. 12/10 https://t.co/9YmNcxA2Cc
671729906628341761 --> I'm just going to leave this one here as well. 13/10 https://t.co/DaD5SyajWt
669353438988365824 --> This is Tessa. She is also very pleased after finally meeting her biological father. 10/10 https://t.co/qDS1aCqppv

Issue #4: Strange Names and Typos¶

Define¶

Replace dog names that do not start with Capital Letter in df_werated_clean

Code¶

In [73]:
df_werated_clean.name = df_werated_clean.name.str.replace("^[a-z]+", "None")
C:\Users\iurkl\AppData\Local\Programs\Python\Python37\lib\site-packages\ipykernel_launcher.py:1: FutureWarning: The default value of regex will change from True to False in a future version.
  """Entry point for launching an IPython kernel.

Test¶

In [74]:
df_werated_clean.name.value_counts().head(20)
Out[74]:
None       726
Lucy        11
Charlie     11
Cooper      10
Oliver      10
Tucker       9
Penny        9
Winston      8
Lola         8
Sadie        8
Daisy        7
Toby         7
Stanley      6
Koda         6
Oscar        6
Jax          6
Bella        6
Bailey       6
Bo           6
Rusty        5
Name: name, dtype: int64
In [75]:
df_werated_clean.name.sample(10)
Out[75]:
1198         Link
426      Sundance
1907         None
1048         Kilo
1676         None
651       Monster
226          None
2047    Scruffers
261       Charlie
1233      Stubert
Name: name, dtype: object

Issue #5: Incorrect ratings¶

Define¶

Replace the rating_numerator and rating_denominator in df_werated_clean for the tweets in df_tweets_to_correct

Code¶

In [76]:
df_tweets_to_correct
Out[76]:
tweet_id new_numerator new_denominator
0 775096608509886464 14 10
1 716439118184652801 11 10
2 682962037429899265 10 10
In [77]:
for i, tweet in enumerate(df_tweets_to_correct.tweet_id):

    r = df_werated_clean.query("tweet_id == @tweet")
    if len(r) > 0:
        df_werated_clean["rating_numerator"][r.index] = df_tweets_to_correct[
            "new_numerator"
        ][i]
        df_werated_clean["rating_denominator"][r.index] = df_tweets_to_correct[
            "new_denominator"
        ][i]
C:\Users\iurkl\AppData\Local\Programs\Python\Python37\lib\site-packages\ipykernel_launcher.py:7: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  import sys
C:\Users\iurkl\AppData\Local\Programs\Python\Python37\lib\site-packages\ipykernel_launcher.py:10: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  # Remove the CWD from sys.path while we load stuff.
In [78]:
df_werated_clean = df_werated_clean.reset_index(drop=True)

Test¶

In [79]:
df_werated_clean[df_werated_clean["tweet_id"].isin(df_tweets_to_correct["tweet_id"])][
    ["tweet_id", "rating_numerator", "rating_denominator"]
]
Out[79]:
tweet_id rating_numerator rating_denominator
990 716439118184652801 11 10
1438 682962037429899265 10 10

Issue #6: Correct ratings (numerator and denominator)¶

Define¶

Replace the rating_numerator in df_werated_clean to its decimal value from the original text

Code¶

In [80]:
# First, we need to change the data type of these fields
df_werated_clean["rating_numerator"] = df_werated_clean["rating_numerator"].astype(
    float
)
In [81]:
df_werated_clean["rating_denominator"] = df_werated_clean["rating_denominator"].astype(
    float
)
In [82]:
df_werated_clean.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2117 entries, 0 to 2116
Data columns (total 17 columns):
 #   Column                      Non-Null Count  Dtype         
---  ------                      --------------  -----         
 0   tweet_id                    2117 non-null   object        
 1   in_reply_to_status_id       23 non-null     object        
 2   in_reply_to_user_id         23 non-null     object        
 3   timestamp                   2117 non-null   datetime64[ns]
 4   source                      2117 non-null   object        
 5   text                        2117 non-null   object        
 6   retweeted_status_id         0 non-null      object        
 7   retweeted_status_user_id    0 non-null      object        
 8   retweeted_status_timestamp  0 non-null      object        
 9   expanded_urls               2117 non-null   object        
 10  rating_numerator            2117 non-null   float64       
 11  rating_denominator          2117 non-null   float64       
 12  name                        2117 non-null   object        
 13  doggo                       2117 non-null   object        
 14  floofer                     2117 non-null   object        
 15  pupper                      2117 non-null   object        
 16  puppo                       2117 non-null   object        
dtypes: datetime64[ns](1), float64(2), object(14)
memory usage: 281.3+ KB
In [83]:
df_werated_clean.reset_index(drop=True, inplace=True)
In [84]:
dic_ratings = {"text": [], "index": [], "value": []}
In [85]:
for i, t in enumerate(df_werated_clean["text"]):
    if re.search("\d+\.\d+\/\d+", t):
        dic_ratings["text"].append(t)
        dic_ratings["index"].append(i)
        dic_ratings["value"].append(re.search("\d+\.\d+", t).group())
In [86]:
for i, v in enumerate(dic_ratings["index"]):
    df_werated_clean["rating_numerator"][v] = dic_ratings["value"][i]
C:\Users\iurkl\AppData\Local\Programs\Python\Python37\lib\site-packages\ipykernel_launcher.py:2: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  
In [87]:
for t in df_werated_clean.query("rating_numerator>= rating_numerator.std()")["text"]:
    print(t)
The floofs have been released I repeat the floofs have been released. 84/70 https://t.co/NIYC820tmd
Why does this never happen at my front door... 165/150 https://t.co/HmwrdfEfUE
This is Atticus. He's quite simply America af. 1776/10 https://t.co/GRXwMxLBkh
Say hello to this unbelievably well behaved squad of doggos. 204/170 would try to pet all at once https://t.co/yGQI3He3xv
Happy Saturday here's 9 puppers on a bench. 99/90 good work everybody https://t.co/mpvaVxKmc1
Here's a brigade of puppers. All look very prepared for whatever happens next. 80/80 https://t.co/0eb7R1Om12
From left to right:
Cletus, Jerome, Alejandro, Burp, &amp; Titson
None know where camera is. 45/50 would hug all at once https://t.co/sedre1ivTK
Here is a whole flock of puppers.  60/50 I'll take the lot https://t.co/9dpcw6MdWa
Happy Wednesday here's a bucket of pups. 44/40 would pet all at once https://t.co/HppvrYuamZ
Two sneaky puppers were not initially seen, moving the rating to 143/130. Please forgive us. Thank you https://t.co/kRK51Y5ac3
Someone help the girl is being mugged. Several are distracting her while two steal her shoes. Clever puppers 121/110 https://t.co/1zfnTJLt55
IT'S PUPPERGEDDON. Total of 144/120 ...I think https://t.co/ZanVtAtvIq
Here we have an entire platoon of puppers. Total score: 88/80 would pet all at once https://t.co/y93p6FLvVw
After so many requests... here you go.

Good dogg. 420/10 https://t.co/yfAAo1gdeY

What I noticed is that most of these exagerated numerators are succeeded by an also exagerated denominator. Therefore, for a better comparison, an additional column called rating will be created by the result of the division between numerator and denominator

In [88]:
df_werated_clean["rating"] = (
    df_werated_clean["rating_numerator"] / df_werated_clean["rating_denominator"]
)

Test¶

In [89]:
for i in dic_ratings["index"]:
    print(
        df_werated_clean["rating_numerator"][i],
        "-->",
        df_werated_clean["text"][i][
            : re.search("\d+\.\d+", df_werated_clean["text"][i]).end() + 1
        ],
    )
13.5 --> This is Bella. She hopes her smile made you smile. If not, she is also offering you her favorite monkey. 13.5/
9.75 --> This is Logan, the Chow who lived. He solemnly swears he's up to lots of good. H*ckin magical af 9.75/
11.27 --> This is Sophie. She's a Jubilant Bush Pupper. Super h*ckin rare. Appears at random just to smile at the locals. 11.27/
11.26 --> Here we have uncovered an entire battalion of holiday puppers. Average of 11.26/
In [90]:
df_werated_clean[
    ["tweet_id", "rating_numerator", "rating_denominator", "rating"]
].sample(20)
Out[90]:
tweet_id rating_numerator rating_denominator rating
421 807106840509214720 13.0 10.0 1.3
1745 672984142909456390 9.0 10.0 0.9
1530 678767140346941444 8.0 10.0 0.8
1817 671488513339211776 8.0 10.0 0.8
8 890609185150312448 13.0 10.0 1.3
1861 670764103623966721 10.0 10.0 1.0
77 875144289856114688 13.0 10.0 1.3
1324 689289219123089408 13.0 10.0 1.3
1142 703407252292673536 10.0 10.0 1.0
439 802952499103731712 12.0 10.0 1.2
513 789903600034189313 13.0 10.0 1.3
1815 671504605491109889 11.0 10.0 1.1
1572 677187300187611136 9.0 10.0 0.9
1125 704871453724954624 12.0 10.0 1.2
38 884247878851493888 13.0 10.0 1.3
1264 693262851218264065 11.0 10.0 1.1
1712 673707060090052608 10.0 10.0 1.0
1480 680805554198020098 9.0 10.0 0.9
940 725786712245440512 11.0 10.0 1.1
636 770069151037685760 10.0 10.0 1.0
In [91]:
df_werated_clean.describe()
Out[91]:
rating_numerator rating_denominator rating
count 2117.000000 2117.000000 2117.000000
mean 12.187898 10.481814 1.165293
std 40.241013 7.053755 3.944543
min 0.000000 2.000000 0.000000
25% 10.000000 10.000000 1.000000
50% 11.000000 10.000000 1.100000
75% 12.000000 10.000000 1.200000
max 1776.000000 170.000000 177.600000

Issue #7: Standardize dog breeds¶

Define¶

Replace _ by space and set the string case as Title

Code¶

In [92]:
# Number of unique breeds before
bb1 = df_img_pred_clean.p1.unique()
bb2 = df_img_pred_clean.p2.unique()
bb3 = df_img_pred_clean.p3.unique()
In [93]:
df_img_pred_clean[["p1", "p2", "p3"]] = df_img_pred_clean[["p1", "p2", "p3"]].replace(
    "_", " ", regex=True
)
df_img_pred_clean[["p1", "p2", "p3"]] = df_img_pred_clean[["p1", "p2", "p3"]].apply(
    lambda col: col.str.title()
)
In [94]:
ba1 = df_img_pred_clean.p1.unique()
ba2 = df_img_pred_clean.p2.unique()
ba3 = df_img_pred_clean.p3.unique()

Test¶

In [95]:
print(
    " p1 changed:",
    len(bb1) != len(ba1),
    "\n",
    "p2 changed:",
    len(bb2) != len(ba2),
    "\n",
    "p3 changed:",
    len(bb1) != len(ba1),
)
 p1 changed: False 
 p2 changed: True 
 p3 changed: False
In [96]:
df_img_pred_clean[["p1", "p2", "p3"]].sample(5)
Out[96]:
p1 p2 p3
1722 Acorn Squash Toilet Seat Toy Poodle
65 Toy Poodle Chihuahua Bluetick
250 Shetland Sheepdog Home Theater American Staffordshire Terrier
1954 Golden Retriever Labrador Retriever Tibetan Mastiff
915 Chihuahua Pembroke Basenji

Issue #8: Identify the predicted breed¶

Define¶

Create a field that identifies the predicted dog breed followed by the confidence level

Code¶

In [97]:
df_img_pred_clean["pred_dog_breed"] = None
df_img_pred_clean["pred_conf"] = np.NaN
In [98]:
for i, row in df_img_pred_clean.iterrows():
    if row.p1_dog:
        df_img_pred_clean["pred_dog_breed"][i] = row.p1
        df_img_pred_clean["pred_conf"][i] = row.p1_conf
    elif row.p2_dog:
        df_img_pred_clean["pred_dog_breed"][i] = row.p2
        df_img_pred_clean["pred_conf"][i] = row.p2_conf
    elif row.p3_dog:
        df_img_pred_clean["pred_dog_breed"][i] = row.p3
        df_img_pred_clean["pred_conf"][i] = row.p3_conf
    else:
        df_img_pred_clean["pred_dog_breed"][i] = "Not a Dog"
        df_img_pred_clean["pred_conf"][i] = np.NaN
C:\Users\iurkl\AppData\Local\Programs\Python\Python37\lib\site-packages\ipykernel_launcher.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  This is separate from the ipykernel package so we can avoid doing imports until
C:\Users\iurkl\AppData\Local\Programs\Python\Python37\lib\site-packages\ipykernel_launcher.py:4: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  after removing the cwd from sys.path.
C:\Users\iurkl\AppData\Local\Programs\Python\Python37\lib\site-packages\ipykernel_launcher.py:12: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  if sys.path[0] == "":
C:\Users\iurkl\AppData\Local\Programs\Python\Python37\lib\site-packages\ipykernel_launcher.py:13: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  del sys.path[0]
C:\Users\iurkl\AppData\Local\Programs\Python\Python37\lib\site-packages\ipykernel_launcher.py:9: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  if __name__ == "__main__":
C:\Users\iurkl\AppData\Local\Programs\Python\Python37\lib\site-packages\ipykernel_launcher.py:10: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  # Remove the CWD from sys.path while we load stuff.
C:\Users\iurkl\AppData\Local\Programs\Python\Python37\lib\site-packages\ipykernel_launcher.py:6: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  
C:\Users\iurkl\AppData\Local\Programs\Python\Python37\lib\site-packages\ipykernel_launcher.py:7: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  import sys
In [ ]:
 

Test¶

In [99]:
df_img_pred_clean.sample(10)
Out[99]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog pred_dog_breed pred_conf
418 674036086168010753 https://pbs.twimg.com/media/CVqoPslWEAEk7EC.jpg 1 Toy Poodle 0.685617 True Miniature Poodle 0.151936 True Maltese Dog 0.045531 True Toy Poodle 0.685617
909 700518061187723268 https://pbs.twimg.com/media/Cbi9dI_UYAAgkyC.jpg 1 American Staffordshire Terrier 0.569501 True Staffordshire Bullterrier 0.211308 True Chihuahua 0.121839 True American Staffordshire Terrier 0.569501
2 666033412701032449 https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German Shepherd 0.596461 True Malinois 0.138584 True Bloodhound 0.116197 True German Shepherd 0.596461
2034 883838122936631299 https://pbs.twimg.com/media/DEQGFgAXUAAEvfi.jpg 1 Doberman 0.610946 True Miniature Pinscher 0.299603 True Kelpie 0.063020 True Doberman 0.610946
21 666293911632134144 https://pbs.twimg.com/media/CT8mx7KW4AEQu8N.jpg 1 Three-Toed Sloth 0.914671 False Otter 0.015250 False Great Grey Owl 0.013207 False Not a Dog NaN
596 679527802031484928 https://pbs.twimg.com/media/CW4q7jDWkAA2y8g.jpg 1 Mailbox 0.336393 False Cannon 0.158936 False Cuirass 0.052647 False Not a Dog NaN
1280 750132105863102464 https://pbs.twimg.com/media/CmkBKuwWgAAamOI.jpg 1 Toy Poodle 0.478018 True Miniature Poodle 0.207458 True Croquet Ball 0.085879 False Toy Poodle 0.478018
31 666421158376562688 https://pbs.twimg.com/media/CT-aggCXAAIMfT3.jpg 1 Blenheim Spaniel 0.906777 True Cocker Spaniel 0.090346 True Shih-Tzu 0.001117 True Blenheim Spaniel 0.906777
123 668226093875376128 https://pbs.twimg.com/media/CUYEFlQXAAUkPGm.jpg 1 Trombone 0.390339 False Cornet 0.314149 False French Horn 0.255182 False Not a Dog NaN
977 707038192327901184 https://pbs.twimg.com/media/Cc_ney1W4AANuY3.jpg 1 Pug 0.642426 True Llama 0.057306 False French Bulldog 0.054186 True Pug 0.642426
In [100]:
df_img_pred_clean.pred_dog_breed.value_counts()
Out[100]:
Not a Dog               324
Golden Retriever        173
Labrador Retriever      113
Pembroke                 96
Chihuahua                95
                       ... 
Scotch Terrier            1
Entlebucher               1
Japanese Spaniel          1
Standard Schnauzer        1
Bouvier Des Flandres      1
Name: pred_dog_breed, Length: 114, dtype: int64
In [101]:
df_img_pred_clean.query("pred_dog_breed == 'Not a Dog'").sample(10)
Out[101]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog pred_dog_breed pred_conf
2046 886680336477933568 https://pbs.twimg.com/media/DE4fEDzWAAAyHMM.jpg 1 Convertible 0.738995 False Sports Car 0.139952 False Car Wheel 0.044173 False Not a Dog NaN
232 670417414769758208 https://pbs.twimg.com/media/CU3NE8EWUAEVdPD.jpg 1 Sea Urchin 0.493257 False Porcupine 0.460565 False Cardoon 0.008146 False Not a Dog NaN
112 667911425562669056 https://pbs.twimg.com/media/CUTl5m1WUAAabZG.jpg 1 Frilled Lizard 0.257695 False Ox 0.235160 False Triceratops 0.085317 False Not a Dog NaN
1057 714631576617938945 https://pbs.twimg.com/media/CerhoBWWAAA5eLL.jpg 1 Meerkat 0.143497 False Weasel 0.117402 False Black-Footed Ferret 0.099933 False Not a Dog NaN
929 702932127499816960 https://pbs.twimg.com/media/CcFRCfRW4AA5a72.jpg 1 Wallaby 0.410710 False Wombat 0.239332 False Beaver 0.149605 False Not a Dog NaN
512 676215927814406144 https://pbs.twimg.com/media/CWJmzNsWUAE706Z.jpg 1 Hamster 0.999484 False Guinea Pig 0.000158 False Broccoli 0.000061 False Not a Dog NaN
840 694669722378485760 https://pbs.twimg.com/media/CaP2bS8WYAAsMdx.jpg 2 Beaver 0.457094 False Mongoose 0.228298 False Marmot 0.148309 False Not a Dog NaN
366 672902681409806336 https://pbs.twimg.com/media/CVahaz9XAAA8uTy.jpg 1 Ram 0.374466 False Bighorn 0.159621 False Arabian Camel 0.111919 False Not a Dog NaN
446 674664755118911488 https://pbs.twimg.com/media/CVzkA7-WsAAcXz6.jpg 1 African Crocodile 0.330625 False American Alligator 0.075356 False Mink 0.057481 False Not a Dog NaN
1755 824796380199809024 https://pbs.twimg.com/media/CwiuEJmW8AAZnit.jpg 2 Gas Pump 0.676439 False Harvester 0.049995 False Swing 0.044660 False Not a Dog NaN

Just checking the predictions which a dog was not identified

In [102]:
for i in df_img_pred_clean.query("pred_dog_breed == 'Not a Dog'").sample(10).index:
    try:

        url = df_img_pred_clean.jpg_url[i]
        print(
            f"p1:{df_img_pred_clean.p1[i]}",
            f"p2:{df_img_pred_clean.p2[i]}",
            f"p3:{df_img_pred_clean.p3[i]}",
        )
        display(Image(url, width=150, height=150))
    except:
        print(
            f"p1:{df_img_pred_clean.p1[i]}",
            f"p2:{df_img_pred_clean.p2[i]}",
            f"p3:{df_img_pred_clean.p3[i]}",
            "\n",
            "No Image to display",
        )
p1:Ibex p2:Bighorn p3:Ram
p1:Marmot p2:Meerkat p3:Weasel
p1:Coil p2:Dugong p3:Rain Barrel
p1:Killer Whale p2:Grey Whale p3:Hammerhead
p1:Lawn Mower p2:Swing p3:Barrow
p1:Vacuum p2:Swab p3:Toilet Tissue
p1:Seashore p2:Promontory p3:Wreck
p1:Ostrich p2:Bearskin p3:Swab
p1:Otter p2:Mink p3:Sea Lion
p1:Damselfly p2:Common Newt p3:Whiptail

Some pictures do have a dog and some not. So, some refining in the prediction model would help in the rating.

Due to Tidness¶

Issue #1: Column Source showing more than one value¶

Define¶

Brake the column source in 3 different columns: url_ref, rel and tweet_source

Code¶

In [103]:
# To facilitate this task, a function was created to break the colum in 3 elements:
df_werated_clean = df_werated_clean.apply(get_url_elements, axis=1)

Test¶

In [104]:
df_werated_clean.columns
Out[104]:
Index(['tweet_id', 'in_reply_to_status_id', 'in_reply_to_user_id', 'timestamp',
       'source', 'text', 'retweeted_status_id', 'retweeted_status_user_id',
       'retweeted_status_timestamp', 'expanded_urls', 'rating_numerator',
       'rating_denominator', 'name', 'doggo', 'floofer', 'pupper', 'puppo',
       'rating', 'tweet_source', 'url_ref', 'rel'],
      dtype='object')
In [105]:
df_werated_clean.head()
Out[105]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls ... rating_denominator name doggo floofer pupper puppo rating tweet_source url_ref rel
0 892420643555336193 NaN NaN 2017-08-01 16:23:56 <a href="http://twitter.com/download/iphone" r... This is Phineas. He's a mystical boy. Only eve... NaN NaN NaN https://twitter.com/dog_rates/status/892420643... ... 10.0 Phineas None None None None 1.3 Twitter for iPhone http://twitter.com/download/iphone nofollow
1 892177421306343426 NaN NaN 2017-08-01 00:17:27 <a href="http://twitter.com/download/iphone" r... This is Tilly. She's just checking pup on you.... NaN NaN NaN https://twitter.com/dog_rates/status/892177421... ... 10.0 Tilly None None None None 1.3 Twitter for iPhone http://twitter.com/download/iphone nofollow
2 891815181378084864 NaN NaN 2017-07-31 00:18:03 <a href="http://twitter.com/download/iphone" r... This is Archie. He is a rare Norwegian Pouncin... NaN NaN NaN https://twitter.com/dog_rates/status/891815181... ... 10.0 Archie None None None None 1.2 Twitter for iPhone http://twitter.com/download/iphone nofollow
3 891689557279858688 NaN NaN 2017-07-30 15:58:51 <a href="http://twitter.com/download/iphone" r... This is Darla. She commenced a snooze mid meal... NaN NaN NaN https://twitter.com/dog_rates/status/891689557... ... 10.0 Darla None None None None 1.3 Twitter for iPhone http://twitter.com/download/iphone nofollow
4 891327558926688256 NaN NaN 2017-07-29 16:00:24 <a href="http://twitter.com/download/iphone" r... This is Franklin. He would like you to stop ca... NaN NaN NaN https://twitter.com/dog_rates/status/891327558... ... 10.0 Franklin None None None None 1.2 Twitter for iPhone http://twitter.com/download/iphone nofollow

5 rows × 21 columns

Issue #2: Dog stage in one single column¶

Define¶

Melt the columns doggo, floofer, pupper and puppo into one single column called dog_stage

Code¶

In [106]:
df_werated_clean.sample(5)
Out[106]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls ... rating_denominator name doggo floofer pupper puppo rating tweet_source url_ref rel
1048 710153181850935296 NaN NaN 2016-03-16 17:18:07 <a href="http://twitter.com/download/iphone" r... This is Lacy. She's tipping her hat to you. Da... NaN NaN NaN https://twitter.com/dog_rates/status/710153181... ... 10.0 Lacy None None None None 1.1 Twitter for iPhone http://twitter.com/download/iphone nofollow
2048 667182792070062081 NaN NaN 2015-11-19 03:29:07 <a href="http://twitter.com/download/iphone" r... This is Timison. He just told an awful joke bu... NaN NaN NaN https://twitter.com/dog_rates/status/667182792... ... 10.0 Timison None None None None 1.0 Twitter for iPhone http://twitter.com/download/iphone nofollow
1526 678969228704284672 NaN NaN 2015-12-21 16:04:13 <a href="http://twitter.com/download/iphone" r... Meet Lola. She's a Metamorphic Chartreuse. Pla... NaN NaN NaN https://twitter.com/dog_rates/status/678969228... ... 10.0 Lola None None None None 1.1 Twitter for iPhone http://twitter.com/download/iphone nofollow
377 814986499976527872 NaN NaN 2016-12-31 00:08:17 <a href="http://twitter.com/download/iphone" r... This is Cooper. Someone attacked him with a sh... NaN NaN NaN https://twitter.com/dog_rates/status/814986499... ... 10.0 Cooper None None pupper None 1.1 Twitter for iPhone http://twitter.com/download/iphone nofollow
1875 670449342516494336 NaN NaN 2015-11-28 03:49:14 <a href="http://twitter.com/download/iphone" r... Vibrant dog here. Fabulous tail. Only 2 legs t... NaN NaN NaN https://twitter.com/dog_rates/status/670449342... ... 10.0 None None None None None 0.5 Twitter for iPhone http://twitter.com/download/iphone nofollow

5 rows × 21 columns

In [107]:
df_werated_clean[["doggo", "floofer", "pupper", "puppo"]] = df_werated_clean[
    ["doggo", "floofer", "pupper", "puppo"]
].replace("None", "")
In [108]:
df_werated_clean["dog_class"] = df_werated_clean[
    ["doggo", "floofer", "pupper", "puppo"]
].values.tolist()
df_werated_clean["dog_class"] = df_werated_clean["dog_class"].apply(
    lambda x: " & ".join(" ".join(x).split())
)
In [109]:
df_werated_clean.dog_class.value_counts()
Out[109]:
                   1779
pupper              222
doggo                72
puppo                23
doggo & pupper       10
floofer               9
doggo & puppo         1
doggo & floofer       1
Name: dog_class, dtype: int64

Notice that some dogs got more than one stage class. This might be because there is more than one dog in the text description or because the tweet gave more than one description for the dog.
Either way, according do the Dogtionary, a doggo is the most popular term. Therefore, in order to simplify the classification, the column will identify only the first recognized stage following the order: doggo, floofer, pupper, puppo as in the original dataframe

In [110]:
df_werated_clean["dog_stage"] = df_werated_clean["dog_class"].str.extract(
    "(doggo|floofer|pupper|puppo)"
)
In [111]:
df_werated_clean["dog_stage"] = df_werated_clean["dog_stage"].fillna("undefined")

Test¶

In [112]:
df_werated_clean.dog_stage.value_counts()
Out[112]:
undefined    1779
pupper        222
doggo          84
puppo          23
floofer         9
Name: dog_stage, dtype: int64
In [113]:
df_werated_clean.sample(5)
Out[113]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls ... doggo floofer pupper puppo rating tweet_source url_ref rel dog_class dog_stage
1705 673919437611909120 NaN NaN 2015-12-07 17:38:09 <a href="http://twitter.com/download/iphone" r... This is Obie. He is on guard watching for evil... NaN NaN NaN https://twitter.com/dog_rates/status/673919437... ... pupper 1.1 Twitter for iPhone http://twitter.com/download/iphone nofollow pupper pupper
743 752334515931054080 NaN NaN 2016-07-11 02:51:40 <a href="http://twitter.com/download/iphone" r... Here's a doggo trying to catch some fish. 8/10... NaN NaN NaN https://twitter.com/dog_rates/status/752334515... ... doggo 0.8 Twitter for iPhone http://twitter.com/download/iphone nofollow doggo doggo
1722 673636718965334016 NaN NaN 2015-12-06 22:54:44 <a href="http://twitter.com/download/iphone" r... This is a Lofted Aphrodisiac Terrier named Kip... NaN NaN NaN https://twitter.com/dog_rates/status/673636718... ... 1.0 Twitter for iPhone http://twitter.com/download/iphone nofollow undefined
685 760290219849637889 NaN NaN 2016-08-02 01:44:48 <a href="http://twitter.com" rel="nofollow">Tw... This is Rocco. He's doing his best. 13/10 some... NaN NaN NaN https://twitter.com/dog_rates/status/760290219... ... 1.3 Twitter Web Client http://twitter.com nofollow undefined
81 874296783580663808 NaN NaN 2017-06-12 16:06:11 <a href="http://twitter.com/download/iphone" r... This is Jed. He may be the fanciest pupper in ... NaN NaN NaN https://twitter.com/dog_rates/status/874296783... ... pupper 1.3 Twitter for iPhone http://twitter.com/download/iphone nofollow pupper pupper

5 rows × 23 columns

Issue #3: Unnecessary Columns¶

Define¶

Discard columns that will not be necessary for analysis

Code¶

In [114]:
df_img_pred_clean.sample()
Out[114]:
tweet_id jpg_url img_num p1 p1_conf p1_dog p2 p2_conf p2_dog p3 p3_conf p3_dog pred_dog_breed pred_conf
1965 867421006826221569 https://pbs.twimg.com/media/DAmyy8FXYAIH8Ty.jpg 1 Eskimo Dog 0.616457 True Siberian Husky 0.38133 True Malamute 0.00167 True Eskimo Dog 0.616457

After the column pred_dog_breed being created, the columns: p1, p1_conf, p1_dog, p2,p2_conf, p2_dog, p3, p3_conf, p3_dog should be discarded

In [115]:
df_img_pred_clean.drop(
    columns=[
        "p1",
        "p1_conf",
        "p1_dog",
        "p2",
        "p2_conf",
        "p2_dog",
        "p3",
        "p3_conf",
        "p3_dog",
    ],
    inplace=True,
)
In [116]:
df_werated_clean.sample()
Out[116]:
tweet_id in_reply_to_status_id in_reply_to_user_id timestamp source text retweeted_status_id retweeted_status_user_id retweeted_status_timestamp expanded_urls ... doggo floofer pupper puppo rating tweet_source url_ref rel dog_class dog_stage
1422 683834909291606017 NaN NaN 2016-01-04 02:18:42 <a href="http://twitter.com/download/iphone" r... Here we see a faulty pupper. Might need to rep... NaN NaN NaN https://twitter.com/dog_rates/status/683834909... ... pupper 0.9 Twitter for iPhone http://twitter.com/download/iphone nofollow pupper pupper

1 rows × 23 columns

In [117]:
# Discarding more unnecessary columns
df_werated_clean.drop(
    columns=[
        "in_reply_to_status_id",
        "in_reply_to_user_id",
        "retweeted_status_id",
        "retweeted_status_user_id",
        "retweeted_status_timestamp",
        "source",
        "doggo",
        "floofer",
        "pupper",
        "puppo",
        "dog_class",
    ],
    inplace=True,
)
In [118]:
df_werated_clean = df_werated_clean[
    [
        "tweet_id",
        "timestamp",
        "text",
        "expanded_urls",
        "rating_numerator",
        "rating_denominator",
        "rating",
        "name",
        "tweet_source",
        "url_ref",
        "rel",
        "dog_stage",
    ]
]
In [119]:
df_tweet_details_clean.drop(columns=["source"], inplace=True)

Test¶

In [120]:
df_img_pred_clean
Out[120]:
tweet_id jpg_url img_num pred_dog_breed pred_conf
0 666020888022790149 https://pbs.twimg.com/media/CT4udn0WwAA0aMy.jpg 1 Welsh Springer Spaniel 0.465074
1 666029285002620928 https://pbs.twimg.com/media/CT42GRgUYAA5iDo.jpg 1 Redbone 0.506826
2 666033412701032449 https://pbs.twimg.com/media/CT4521TWwAEvMyu.jpg 1 German Shepherd 0.596461
3 666044226329800704 https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian Ridgeback 0.408143
4 666049248165822465 https://pbs.twimg.com/media/CT5IQmsXIAAKY4A.jpg 1 Miniature Pinscher 0.560311
... ... ... ... ... ...
2070 891327558926688256 https://pbs.twimg.com/media/DF6hr6BUMAAzZgT.jpg 2 Basset 0.555712
2071 891689557279858688 https://pbs.twimg.com/media/DF_q7IAWsAEuuN8.jpg 1 Labrador Retriever 0.168086
2072 891815181378084864 https://pbs.twimg.com/media/DGBdLU1WsAANxJ9.jpg 1 Chihuahua 0.716012
2073 892177421306343426 https://pbs.twimg.com/media/DGGmoV4XsAAUL6n.jpg 1 Chihuahua 0.323581
2074 892420643555336193 https://pbs.twimg.com/media/DGKD1-bXoAAIAUK.jpg 1 Not a Dog NaN

2075 rows × 5 columns

In [121]:
df_werated_clean.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2117 entries, 0 to 2116
Data columns (total 12 columns):
 #   Column              Non-Null Count  Dtype         
---  ------              --------------  -----         
 0   tweet_id            2117 non-null   object        
 1   timestamp           2117 non-null   datetime64[ns]
 2   text                2117 non-null   object        
 3   expanded_urls       2117 non-null   object        
 4   rating_numerator    2117 non-null   float64       
 5   rating_denominator  2117 non-null   float64       
 6   rating              2117 non-null   float64       
 7   name                2117 non-null   object        
 8   tweet_source        2117 non-null   object        
 9   url_ref             2117 non-null   object        
 10  rel                 2117 non-null   object        
 11  dog_stage           2117 non-null   object        
dtypes: datetime64[ns](1), float64(3), object(8)
memory usage: 198.6+ KB
In [122]:
df_werated_clean.sample(10)
Out[122]:
tweet_id timestamp text expanded_urls rating_numerator rating_denominator rating name tweet_source url_ref rel dog_stage
465 797236660651966464 2016-11-12 00:36:46 This is Pancake. She loves Batman and winks li... https://twitter.com/dog_rates/status/797236660... 12.0 10.0 1.2 Pancake Twitter for iPhone http://twitter.com/download/iphone nofollow undefined
1944 669006782128353280 2015-11-24 04:17:01 This is Tucker. He is 100% ready for the sport... https://twitter.com/dog_rates/status/669006782... 12.0 10.0 1.2 Tucker Twitter for iPhone http://twitter.com/download/iphone nofollow undefined
692 759557299618865152 2016-07-31 01:12:26 This is Emma. She can't believe her last guess... https://twitter.com/dog_rates/status/759557299... 10.0 10.0 1.0 Emma Twitter for iPhone http://twitter.com/download/iphone nofollow undefined
1512 679527802031484928 2015-12-23 05:03:47 This little pupper just arrived. 11/10 would s... https://twitter.com/dog_rates/status/679527802... 11.0 10.0 1.1 None Twitter for iPhone http://twitter.com/download/iphone nofollow pupper
338 821107785811234820 2017-01-16 21:32:06 Here's a doggo who looks like he's about to gi... https://twitter.com/dog_rates/status/821107785... 11.0 10.0 1.1 None Twitter for iPhone http://twitter.com/download/iphone nofollow doggo
768 750041628174217216 2016-07-04 19:00:33 This is Beau. He's trying to keep his daddy fr... https://twitter.com/dog_rates/status/750041628... 13.0 10.0 1.3 Beau TweetDeck https://about.twitter.com/products/tweetdeck nofollow undefined
303 827324948884643840 2017-02-03 01:16:53 This is Ralphie. He's being treated for an ove... https://twitter.com/dog_rates/status/827324948... 12.0 10.0 1.2 Ralphie Twitter for iPhone http://twitter.com/download/iphone nofollow undefined
1231 696405997980676096 2016-02-07 18:51:43 This is Berb. He just found out that they have... https://twitter.com/dog_rates/status/696405997... 7.0 10.0 0.7 Berb Twitter for iPhone http://twitter.com/download/iphone nofollow undefined
673 761745352076779520 2016-08-06 02:06:59 Guys.. we only rate dogs. Pls don't send any m... https://twitter.com/dog_rates/status/761745352... 11.0 10.0 1.1 None Twitter for iPhone http://twitter.com/download/iphone nofollow undefined
1108 706291001778950144 2016-03-06 01:31:11 When you're just relaxin and having a swell ti... https://twitter.com/dog_rates/status/706291001... 11.0 10.0 1.1 None Twitter for iPhone http://twitter.com/download/iphone nofollow undefined
In [123]:
df_tweet_details_clean.sample(10)
Out[123]:
tweet_id retweet_count favorite_count followers_count friends_count retweeted_status
1742 679158373988876288 9193 23568 3200953 104 Original Tweet
957 751251247299190784 6695 13791 3200943 104 Original Tweet
1266 709556954897764353 1204 3593 3200947 104 Original Tweet
1598 686007916130873345 472 2704 3200950 104 Original Tweet
471 816450570814898180 9366 33961 3200895 104 Original Tweet
1023 746369468511756288 1854 6637 3200943 104 Original Tweet
54 881633300179243008 7 129 3200890 104 Original Tweet
2221 668297328638447616 319 656 3201015 104 Original Tweet
1755 678764513869611008 544 1788 3200953 104 Original Tweet
988 748705597323898880 1067 3047 3200943 104 Original Tweet

Issue #4: Merge Tables¶

Define¶

Merge all tables in one single table so it will be easier to plot

Code¶

In [124]:
df_weratedogs_all = df_werated_clean.merge(
    df_img_pred_clean, on="tweet_id", how="inner"
).merge(df_tweet_details_clean, on="tweet_id", how="inner")
In [125]:
df_weratedogs_all.columns
Out[125]:
Index(['tweet_id', 'timestamp', 'text', 'expanded_urls', 'rating_numerator',
       'rating_denominator', 'rating', 'name', 'tweet_source', 'url_ref',
       'rel', 'dog_stage', 'jpg_url', 'img_num', 'pred_dog_breed', 'pred_conf',
       'retweet_count', 'favorite_count', 'followers_count', 'friends_count',
       'retweeted_status'],
      dtype='object')
In [126]:
# Changing some column names to a more meninful name
df_weratedogs_all = df_weratedogs_all.rename(
    columns={
        "text": "tweet_text",
        "expanded_urls": "tweet_url",
        "rating_numerator": "dog_rating_numerator",
        "rating_denominator": "dog_rating_denominator",
        "rating": "dog_rating",
        "name": "dog_name",
    }
)

Test¶

In [127]:
df_weratedogs_all.columns
Out[127]:
Index(['tweet_id', 'timestamp', 'tweet_text', 'tweet_url',
       'dog_rating_numerator', 'dog_rating_denominator', 'dog_rating',
       'dog_name', 'tweet_source', 'url_ref', 'rel', 'dog_stage', 'jpg_url',
       'img_num', 'pred_dog_breed', 'pred_conf', 'retweet_count',
       'favorite_count', 'followers_count', 'friends_count',
       'retweeted_status'],
      dtype='object')
In [128]:
df_weratedogs_all.sample(5)
Out[128]:
tweet_id timestamp tweet_text tweet_url dog_rating_numerator dog_rating_denominator dog_rating dog_name tweet_source url_ref ... dog_stage jpg_url img_num pred_dog_breed pred_conf retweet_count favorite_count followers_count friends_count retweeted_status
1006 707969809498152960 2016-03-10 16:42:10 Meet Rufus. He's a Honeysuckle Firefox. Curly ... https://twitter.com/dog_rates/status/707969809... 11.0 10.0 1.1 Rufus Twitter for iPhone http://twitter.com/download/iphone ... undefined https://pbs.twimg.com/media/CdM2xRpXEAUsR4k.jpg 1 Toy Poodle 0.908491 1097 2941 3200947 104 Original Tweet
470 793135492858580992 2016-10-31 17:00:11 Your favorite squad is looking extra h*ckin sp... https://twitter.com/dog_rates/status/793135492... 13.0 10.0 1.3 None Twitter for iPhone http://twitter.com/download/iphone ... undefined https://pbs.twimg.com/media/CwHIg61WIAApnEV.jpg 1 Not a Dog NaN 2893 7214 3200901 104 Original Tweet
427 800513324630806528 2016-11-21 01:37:04 This is Chef. Chef loves everyone and wants ev... https://twitter.com/dog_rates/status/800513324... 11.0 10.0 1.1 Chef Twitter for iPhone http://twitter.com/download/iphone ... undefined https://pbs.twimg.com/media/Cxv-nkJUoAAhzMt.jpg 1 Pembroke 0.828904 3495 14685 3200898 104 Original Tweet
1684 671544874165002241 2015-12-01 04:22:29 Interesting dog here. Very large. Purple. Mani... https://twitter.com/dog_rates/status/671544874... 6.0 10.0 0.6 None Twitter for iPhone http://twitter.com/download/iphone ... undefined https://pbs.twimg.com/media/CVHOgDvU4AAfrXD.jpg 1 Not a Dog NaN 1145 2126 3201006 104 Original Tweet
1990 666044226329800704 2015-11-16 00:04:52 This is a purebred Piers Morgan. Loves to Netf... https://twitter.com/dog_rates/status/666044226... 6.0 10.0 0.6 None Twitter for iPhone http://twitter.com/download/iphone ... undefined https://pbs.twimg.com/media/CT5Dr8HUEAA-lEu.jpg 1 Rhodesian Ridgeback 0.408143 147 311 3201018 104 Original Tweet

5 rows × 21 columns

In [129]:
df_weratedogs_all.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 1994 entries, 0 to 1993
Data columns (total 21 columns):
 #   Column                  Non-Null Count  Dtype         
---  ------                  --------------  -----         
 0   tweet_id                1994 non-null   object        
 1   timestamp               1994 non-null   datetime64[ns]
 2   tweet_text              1994 non-null   object        
 3   tweet_url               1994 non-null   object        
 4   dog_rating_numerator    1994 non-null   float64       
 5   dog_rating_denominator  1994 non-null   float64       
 6   dog_rating              1994 non-null   float64       
 7   dog_name                1994 non-null   object        
 8   tweet_source            1994 non-null   object        
 9   url_ref                 1994 non-null   object        
 10  rel                     1994 non-null   object        
 11  dog_stage               1994 non-null   object        
 12  jpg_url                 1994 non-null   object        
 13  img_num                 1994 non-null   int64         
 14  pred_dog_breed          1994 non-null   object        
 15  pred_conf               1686 non-null   float64       
 16  retweet_count           1994 non-null   int64         
 17  favorite_count          1994 non-null   int64         
 18  followers_count         1994 non-null   int64         
 19  friends_count           1994 non-null   int64         
 20  retweeted_status        1994 non-null   object        
dtypes: datetime64[ns](1), float64(4), int64(5), object(11)
memory usage: 342.7+ KB

Storing Data¶

Save gathered, assessed, and cleaned master dataset to a CSV file named "twitter_archive_master.csv".

In [130]:
df_weratedogs_all.to_csv(
    "twitter_archive_master.csv", encoding="utf-8", index=False, sep=";"
)

Analyzing and Visualizing Data¶

In this section, analyze and visualize your wrangled data. You must produce at least three (3) insights and one (1) visualization.

Insights:¶

  1. Total Number of tweets over time

  2. Correlation between tweets and average of followers

  3. Top 10 most predicted breeds

  4. Top ten 10 most common dog names

Checking the total number of tweets per month¶

In [131]:
# as per documentation in https://pandas.pydata.org/pandas-docs/version/1.3/reference/api/pandas.Grouper.html, will
# use pd.Grouper to group counts of Tweets per month

df_tweets_per_month = (
    df_weratedogs_all.groupby(pd.Grouper(key="timestamp", freq="M"))
    .count()
    .reset_index()[["timestamp", "tweet_id"]]
)
In [132]:
plt.figure(figsize=(8, 8))
plt.xlabel("Month-Year")
plt.ylabel("Number of Tweets")

plt.plot(df_tweets_per_month["timestamp"], df_tweets_per_month["tweet_id"])
plt.grid(visible=True, which="major", axis="both")
plt.title("Tweets per Month");

The number of tweets decreases substantially over time. Did people lose interest in WeRateDogs?

Checking Correlation between the amount of tweets and follower counts¶

In [133]:
df_avg_followers = (
    df_weratedogs_all.groupby(pd.Grouper(key="timestamp", freq="M"))
    .mean()
    .reset_index()
)
df_avg_followers = df_avg_followers[["timestamp", "followers_count", "retweet_count"]]
df_avg_followers.followers_count = df_avg_followers.followers_count.astype(int)
In [134]:
df_tweet_ct_followers = df_tweets_per_month.merge(df_avg_followers, on="timestamp")
df_tweet_ct_followers.rename(columns={"tweet_id": "tweet_count"}, inplace=True)
df_tweet_ct_followers.corr()
Out[134]:
tweet_count followers_count retweet_count
tweet_count 1.000000 0.834819 -0.651202
followers_count 0.834819 1.000000 -0.859924
retweet_count -0.651202 -0.859924 1.000000
In [135]:
z = np.polyfit(
    df_tweet_ct_followers["tweet_count"], df_tweet_ct_followers["followers_count"], 1
)
p = np.poly1d(z)
plt.xlabel("Tweet Count")
plt.ylabel("Followers Average")
plt.title("Linear Correlation Between Tweet Counts and Followers Average", y=1.08)

plt.scatter(
    x=df_tweet_ct_followers["tweet_count"],
    y=df_tweet_ct_followers["followers_count"],
    marker="^",
)
plt.plot(
    df_tweet_ct_followers["tweet_count"], p(df_tweet_ct_followers["tweet_count"]), "r--"
);

Considering that the amount of tweets vary over the month, so does the amount of followers.
The Pearson's Ranking classifies the correlation above as a High Positive Correlation, which in other terms can mean, the more tweets we have, the more followers we will get.
However, it's important to be careful in this statement because Statistical Correlation Not Necessarily Describes Causality reference.
Therefore, a deeper investigation must be done to prove this statement

Number of Catalogued Breeds Followed by Confidence Level¶

In [136]:
# Let's discard the uncatalogued breeds
df_only_dogs = df_weratedogs_all.query("pred_dog_breed != 'Not a Dog'")
In [137]:
print(f"{df_only_dogs['pred_dog_breed'].nunique()} Distinct predicted breeds at an average confidence level of {df_only_dogs['pred_conf'].mean()}")
113 Distinct predicted breeds at an average confidence level of 0.5499357432711743

10 Most Predicted Breeds¶

In [138]:
df_only_dogs.pred_dog_breed.value_counts().head(10)
Out[138]:
Golden Retriever      158
Labrador Retriever    108
Pembroke               95
Chihuahua              91
Pug                    62
Toy Poodle             51
Chow                   48
Samoyed                42
Pomeranian             42
Malamute               33
Name: pred_dog_breed, dtype: int64

10 Most Common Names¶

In [139]:
df_only_dogs_name = df_only_dogs.query("dog_name != 'None'")
df_only_dogs_name.dog_name.value_counts().head(10)
Out[139]:
Lucy       10
Charlie    10
Cooper     10
Tucker      9
Oliver      9
Penny       8
Daisy       7
Winston     7
Sadie       7
Jax         6
Name: dog_name, dtype: int64

Visualization¶

In [140]:
plt.title("Top 10 Most Commom Dog Names")
plt.xlabel("Number of Records", c = 'r')
plt.ylabel("Dog Name", c = 'r')
df_only_dogs_name.dog_name.value_counts().head(10).plot(kind = 'barh');
In [ ]: